Fix bug.
This commit is contained in:
parent
8bf121655b
commit
c8c8738800
|
@ -2,6 +2,7 @@
|
|||
require 'rubyXL'
|
||||
class Admin::PatchfilesController < OrbitAdminController
|
||||
include Admin::PatchfilesHelper
|
||||
include AdminAuthorize rescue nil
|
||||
before_action :getfont , :create_first_field
|
||||
#before_action :load_access_levels
|
||||
layout "structure"
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
require "yaml"
|
||||
module Patchfile
|
||||
class Engine < ::Rails::Engine
|
||||
initializer "patchfile" do
|
||||
OrbitApp.registration "Patchfile", :type => "ModuleApp" do
|
||||
initializer "patchfile" do
|
||||
OrbitApp.registration "Patchfile", :type => "ModuleApp" do
|
||||
base_url File.expand_path File.dirname(__FILE__)
|
||||
# taggable "patchfilefield"
|
||||
# categorizable
|
||||
# authorizable
|
||||
side_bar do
|
||||
side_bar do
|
||||
# head_label_i18n 'patchfile.patchfile', icon_class: "icons-megaphone"
|
||||
# available_for "users"
|
||||
# active_for_controllers (['admin/patchfiles'])
|
||||
|
@ -18,20 +18,15 @@ module Patchfile
|
|||
# :priority=>1,
|
||||
# :active_for_action=>{'admin/patchfiles'=>'index'},
|
||||
# :available_for => 'users'
|
||||
# context_link 'CKEDITOR',
|
||||
# :link_path=>"admin_patchfiles_showckeditor_path" ,
|
||||
# #:link_to=>"admin_patchfiles_path"+"/showckeditor" ,
|
||||
# :priority=>2,
|
||||
# :active_for_action=>{'admin/patchfiles'=>'showckeditor'},
|
||||
# :available_for => 'users'
|
||||
|
||||
end
|
||||
end
|
||||
# # temp = YAML.load_file(File.join(Rails.root,"config","mongoid.yml"))
|
||||
# # dbsettings = temp["production"]["sessions"]["default"]
|
||||
# # s = Moped::Session.new(dbsettings["hosts"])
|
||||
# # s.use dbsettings["database"]
|
||||
# # s[:bulletins].indexes.create({expirable_created_at: 1},{ expireAfterSeconds: 180 })
|
||||
end
|
||||
# context_link 'CKEDITOR',
|
||||
# :link_path=>"admin_patchfiles_showckeditor_path" ,
|
||||
# #:link_to=>"admin_patchfiles_path"+"/showckeditor" ,
|
||||
# :priority=>2,
|
||||
# :active_for_action=>{'admin/patchfiles'=>'showckeditor'},
|
||||
# :available_for => 'users'
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue