Sha256: 521ca152d8751c3b851cea66facfa7355f8eb0ec16d0daba19227553a1a9159b

Contents?: true

Size: 628 Bytes

Versions: 3

Compression:

Stored size: 628 Bytes

Contents

# Copyright (c) 2008-2013 Michael Dvorkin and contributors.
#
# Fat Free CRM is freely distributable under the terms of MIT license.
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
#------------------------------------------------------------------------------
class Admin::SettingsController < Admin::ApplicationController
  before_action :setup_current_tab, only: [:index]

  # GET /admin/settings
  # GET /admin/settings.xml
  #----------------------------------------------------------------------------
  def index
  end

  def setup_current_tab
    set_current_tab('admin/settings')
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fat_free_crm-0.16.4 app/controllers/admin/settings_controller.rb
fat_free_crm-0.16.3 app/controllers/admin/settings_controller.rb
fat_free_crm-0.16.2 app/controllers/admin/settings_controller.rb