2012-02-15 10:20:44 +00:00
|
|
|
class OrbitFrontendComponentController< ApplicationController
|
2013-07-02 08:46:44 +00:00
|
|
|
include OrbitCategory::Categorizing
|
2012-01-18 03:51:38 +00:00
|
|
|
before_filter :setup_vars
|
2012-01-10 10:29:11 +00:00
|
|
|
before_filter {|c| c.front_end_available(@app_title)}
|
2012-05-13 13:55:39 +00:00
|
|
|
layout "module_widget"
|
2012-01-18 03:51:38 +00:00
|
|
|
|
|
|
|
def setup_vars
|
|
|
|
@app_title = request.fullpath.split('/')[2]
|
2013-07-02 08:46:44 +00:00
|
|
|
@module_app ||= ModuleApp.first(conditions: {:key => @app_title} )
|
2012-01-18 03:51:38 +00:00
|
|
|
end
|
|
|
|
|
2012-01-10 10:29:11 +00:00
|
|
|
end
|