You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
385 B
14 lines
385 B
5 years ago
|
class Cooperative::LaboratorySettingsController < Cooperative::BaseController
|
||
|
def edit
|
||
|
@laboratory = current_laboratory
|
||
|
end
|
||
|
|
||
|
def update
|
||
|
Admins::SaveLaboratorySettingService.call(current_laboratory, form_params)
|
||
|
render_ok
|
||
|
end
|
||
|
|
||
|
def form_params
|
||
|
params.permit(:identifier, :name, :nav_logo, :login_logo, :tab_logo, :footer, navbar: %i[name link hidden])
|
||
|
end
|
||
|
end
|