forked from External/greenlight
skip cleanup and minor fixes
This commit is contained in:
parent
4394b0b6e7
commit
1412b39620
|
@ -20,6 +20,7 @@ before_deploy:
|
||||||
- docker login -u "$REGISTRY_USER" -p "$REGISTRY_PASS"
|
- docker login -u "$REGISTRY_USER" -p "$REGISTRY_PASS"
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
|
skip_cleanup: true
|
||||||
provider: script
|
provider: script
|
||||||
script: docker push bigbluebutton/greenlight:master
|
script: docker push bigbluebutton/greenlight:master
|
||||||
on:
|
on:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||

|
|
||||||
|
|
||||||
# Greenlight
|
# Greenlight
|
||||||
|
|
||||||
Greenlight is currently on version 2.0. If you are still running Greenlight 1.0 we suggest [upgrading to 2.0](http://docs.bigbluebutton.org/install/greenlight-v2.html#upgrading-from-greenlight-10).
|

|
||||||
|
|
||||||
|
> Greenlight is currently on version 2.0. If you are still running Greenlight 1.0 we suggest [upgrading to 2.0](http://docs.bigbluebutton.org/install/greenlight-v2.html#upgrading-from-greenlight-10).
|
||||||
|
|
||||||
Greenlight is a simple front-end interface for your BigBlueButton server. At it's heart, Greenlight provides a minimalistic web-based application that allows users to:
|
Greenlight is a simple front-end interface for your BigBlueButton server. At it's heart, Greenlight provides a minimalistic web-based application that allows users to:
|
||||||
|
|
||||||
|
|
|
@ -65,7 +65,6 @@ class RoomsController < ApplicationController
|
||||||
|
|
||||||
# DELETE /:room_uid
|
# DELETE /:room_uid
|
||||||
def destroy
|
def destroy
|
||||||
p @room
|
|
||||||
# Don't delete the users home room.
|
# Don't delete the users home room.
|
||||||
@room.destroy if @room.owned_by?(current_user) && @room != current_user.main_room
|
@room.destroy if @room.owned_by?(current_user) && @room != current_user.main_room
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue