metamaps--metamaps/app/models/user_preference.rb

31 lines
900 B
Ruby
Raw Normal View History

2016-09-24 03:00:46 +00:00
# frozen_string_literal: true
2017-11-25 19:23:47 +00:00
2016-02-03 13:38:41 +00:00
class UserPreference
2017-03-08 18:50:39 +00:00
attr_accessor :metacodes, :metacode_focus, :follow_topic_on_created, :follow_topic_on_contributed,
:follow_map_on_created, :follow_map_on_contributed
2016-02-03 13:38:41 +00:00
def initialize
array = []
%w(Action Aim Idea Question Note Wildcard Subject).each do |m|
begin
metacode = Metacode.find_by(name: m)
array.push(metacode.id.to_s) if metacode
rescue ActiveRecord::StatementInvalid
if m == 'Action'
2016-09-24 03:00:46 +00:00
Rails.logger.warn('TODO: remove this travis workaround in user_preference.rb')
end
end
2016-02-03 13:38:41 +00:00
end
@metacodes = array
2017-02-05 06:28:10 +00:00
@metacode_focus = array[0]
2017-03-08 18:50:39 +00:00
initialize_follow_settings
end
def initialize_follow_settings
@follow_topic_on_created = false
@follow_topic_on_contributed = false
@follow_map_on_created = true
2017-03-08 18:50:39 +00:00
@follow_map_on_contributed = false
2016-02-03 13:38:41 +00:00
end
end