Update Tag and Category

This commit is contained in:
manson 2014-04-18 19:37:31 +08:00
parent f1d6975e52
commit c12bf2b036
2 changed files with 13 additions and 12 deletions

View File

@ -1,7 +1,6 @@
class Bulletin
include Mongoid::Document
include Mongoid::Timestamps
include OrbitCategory::Categorizable
include Slug
field :title, as: :slug_title, type: String, localize: true

View File

@ -1,17 +1,19 @@
module Announcement
class Engine < ::Rails::Engine
initializer "announcement" do
OrbitApp.registration "Announcement", :type => "ModuleApp" do
module_label "announcement.announcement"
base_url File.expand_path File.dirname(__FILE__)
widget_methods ["widget"]
initializer "announcement" do
OrbitApp.registration "Announcement", :type => "ModuleApp" do
module_label "announcement.announcement"
base_url File.expand_path File.dirname(__FILE__)
widget_methods ["widget"]
taggable "Bulletin"
categorizable "Bulletin"
side_bar do
head_label_i18n "announcement.announcement", icon_class: "icons-megaphone"
side_bar do
head_label_i18n 'announcement.announcement', icon_class: "icons-megaphone"
active_for_controllers ({:private=>['announcements']})
head_link_path "admin_announcements_path"
end
end
end
head_link_path "admin_announcements_path"
end
end
end
end
end