39 lines
1003 B
Ruby
39 lines
1003 B
Ruby
class Admin::Settings::ConfigurationTabComponent < ApplicationComponent
|
|
def settings
|
|
%w[
|
|
official_level_1_name
|
|
official_level_2_name
|
|
official_level_3_name
|
|
official_level_4_name
|
|
official_level_5_name
|
|
max_ratio_anon_votes_on_debates
|
|
max_votes_for_debate_edit
|
|
max_votes_for_proposal_edit
|
|
comments_body_max_length
|
|
proposal_code_prefix
|
|
votes_for_proposal_success
|
|
months_to_archive_proposals
|
|
email_domain_for_officials
|
|
facebook_handle
|
|
instagram_handle
|
|
telegram_handle
|
|
twitter_handle
|
|
twitter_hashtag
|
|
youtube_handle
|
|
org_name
|
|
meta_title
|
|
meta_description
|
|
meta_keywords
|
|
proposal_notification_minimum_interval_in_days
|
|
direct_message_max_per_day
|
|
mailer_from_name
|
|
mailer_from_address
|
|
min_age_to_participate
|
|
hot_score_period_in_days
|
|
related_content_score_threshold
|
|
featured_proposals_number
|
|
postal_codes
|
|
]
|
|
end
|
|
end
|