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

20 lines
505 B
Ruby
Raw Normal View History

2016-09-24 03:00:46 +00:00
# frozen_string_literal: true
2016-02-03 13:38:41 +00:00
class UserPreference
attr_accessor :metacodes
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
end
end