2014-07-17 10:25:16 +08:00
|
|
|
class BadgeGrouping < ActiveRecord::Base
|
2014-07-17 14:10:44 +08:00
|
|
|
|
2014-07-18 13:46:36 +08:00
|
|
|
GettingStarted = 1
|
|
|
|
Community = 2
|
|
|
|
Posting = 3
|
|
|
|
TrustLevel = 4
|
|
|
|
Other = 5
|
2014-07-17 14:10:44 +08:00
|
|
|
|
2014-07-17 10:25:16 +08:00
|
|
|
has_many :badges
|
2014-07-27 09:33:33 +08:00
|
|
|
|
2014-07-27 16:22:01 +08:00
|
|
|
def system?
|
2015-12-27 06:58:54 +08:00
|
|
|
id && id <= 5
|
2014-07-27 16:22:01 +08:00
|
|
|
end
|
|
|
|
|
2014-07-27 09:33:33 +08:00
|
|
|
def default_position=(pos)
|
2014-07-27 16:32:04 +08:00
|
|
|
self.position ||= pos
|
2014-07-27 09:33:33 +08:00
|
|
|
end
|
2014-07-17 10:25:16 +08:00
|
|
|
end
|
2014-07-17 14:10:44 +08:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: badge_groupings
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
2016-02-23 07:33:53 +08:00
|
|
|
# name :string not null
|
2014-07-22 10:46:31 +08:00
|
|
|
# description :text
|
2014-07-17 14:10:44 +08:00
|
|
|
# position :integer not null
|
2014-08-27 13:19:25 +08:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2014-07-17 14:10:44 +08:00
|
|
|
#
|