metamaps--metamaps/app/models/user_preference.rb
2016-09-24 11:00:46 +08:00

20 lines
504 B
Ruby

# frozen_string_literal: true
class UserPreference
attr_accessor :metacodes
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'
Rails.logger.warn('TODO: remove this travis workaround in user_preference.rb')
end
end
end
@metacodes = array
end
end