This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-07-11 18:24:04 -07:00
|
|
|
# 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=,
|
2017-09-10 00:58:38 -07:00
|
|
|
:bootstrap_timeline_accounts,
|
|
|
|
:bootstrap_timeline_accounts=,
|
2017-07-11 18:24:04 -07:00
|
|
|
to: Setting
|
|
|
|
)
|
|
|
|
end
|