10 lines
185 B
Ruby
10 lines
185 B
Ruby
class Admin::AppCatalogController < Admin::BaseController
|
|
before_action :set_current_section
|
|
|
|
private
|
|
|
|
def set_current_section
|
|
@current_section = :app_catalog
|
|
end
|
|
end
|