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.
30 lines
623 B
30 lines
623 B
# frozen_string_literal: true
|
|
|
|
class Form::AdminSettings
|
|
include ActiveModel::Model
|
|
|
|
delegate(
|
|
:site_contact_username,
|
|
:site_contact_username=,
|
|
:site_contact_email,
|
|
:site_contact_email=,
|
|
:site_title,
|
|
:site_title=,
|
|
:site_description,
|
|
:site_description=,
|
|
:site_extended_description,
|
|
:site_extended_description=,
|
|
:site_terms,
|
|
:site_terms=,
|
|
:open_registrations,
|
|
:open_registrations=,
|
|
:closed_registrations_message,
|
|
:closed_registrations_message=,
|
|
:open_deletion,
|
|
:open_deletion=,
|
|
:timeline_preview,
|
|
:timeline_preview=,
|
|
to: Setting
|
|
)
|
|
end
|