orbit-basic/vendor/built_in_modules/web_resource/app/models/web_link_category.rb

23 lines
467 B
Ruby
Raw Normal View History

2012-02-15 07:38:27 +00:00
# encoding: utf-8
class WebLinkCategory
include Mongoid::Document
include Mongoid::Timestamps
include OrbitCoreLib::ObjectAuthable
2012-07-05 08:00:45 +00:00
include OrbitCoreLib::ObjectDisable
2012-02-15 07:38:27 +00:00
# include Mongoid::MultiParameterAttributes
AfterObjectAuthUrl = '/panel/page_content/back_end/page_contexts'
APP_NAME = 'web_resource'
ObjectAuthTitlesOptions = %W{edit}
2012-02-15 07:38:27 +00:00
field :key
2012-07-25 20:10:15 +00:00
field :title, localize: true
2012-02-15 07:38:27 +00:00
has_many :web_links
def pp_object
2012-07-25 20:10:15 +00:00
title
end
2012-02-15 07:38:27 +00:00
end