forked from External/greenlight
GRN2-118: Create a setting to require authentication to join a room (#541)
* Create a setting to require authentication to join a room * Apply comments
This commit is contained in:
committed by
Jesus Federico
parent
996518eea7
commit
70acb9a7e1
@ -23,6 +23,10 @@ en:
|
||||
accepted_terms: "Terms and Conditions"
|
||||
administrator:
|
||||
site_settings:
|
||||
authentication:
|
||||
info: Only allow authenticated users to join a room
|
||||
title: Require Authentication for Rooms
|
||||
user-info: You must sign in to Greenlight to join this room
|
||||
branding:
|
||||
change: Change Image
|
||||
info: Change the branding image that appears in the top left corner
|
||||
|
@ -39,6 +39,7 @@ Rails.application.routes.draw do
|
||||
scope '/admins' do
|
||||
post '/branding', to: 'admins#branding', as: :admin_branding
|
||||
post '/coloring', to: 'admins#coloring', as: :admin_coloring
|
||||
post '/room_authentication', to: 'admins#room_authentication', as: :admin_room_authentication
|
||||
post '/coloring_lighten', to: 'admins#coloring_lighten', as: :admin_coloring_lighten
|
||||
post '/coloring_darken', to: 'admins#coloring_darken', as: :admin_coloring_darken
|
||||
post '/signup', to: 'admins#signup', as: :admin_signup
|
||||
|
Reference in New Issue
Block a user