forked from External/greenlight
GRN2-253: Added the ability to share rooms across multiple users (#912)
* Added ability to share rooms with other users * Fixed testcases
This commit is contained in:
committed by
farhatahmad
parent
8cbfc3f730
commit
967130e57c
@ -112,6 +112,9 @@ Rails.application.routes.draw do
|
||||
post '/', to: 'rooms#join'
|
||||
patch '/', to: 'rooms#update', as: :update_room
|
||||
post '/update_settings', to: 'rooms#update_settings'
|
||||
post '/update_shared_access', to: 'rooms#shared_access', as: :room_shared_access
|
||||
delete '/remove_shared_access', to: 'rooms#remove_shared_access', as: :room_remove_shared_access
|
||||
get '/shared_users', to: 'rooms#shared_users', as: :room_shared_users
|
||||
post '/start', to: 'rooms#start', as: :start_room
|
||||
get '/logout', to: 'rooms#logout', as: :logout_room
|
||||
post '/login', to: 'rooms#login', as: :login_room
|
||||
|
Reference in New Issue
Block a user