You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # == Schema Information
- #
- # Table name: template_message_settings
- #
- # id :integer not null, primary key
- # type :string(255)
- # name :string(255)
- # key :string(255)
- # openning :boolean default("1")
- # notification_disabled :boolean default("1")
- # email_disabled :boolean default("0")
- # created_at :datetime not null
- # updated_at :datetime not null
- #
-
- #我关注的
- class TemplateMessageSetting::WatchProject < TemplateMessageSetting
-
- def self.type_name
- "我关注的仓库"
- end
-
- def self.order_index
- 40
- end
-
- def self.build_init_data
- end
- end
|