Sha256: 83efc0bca3c76fc6ae6b427f28379fb250c131798534c02c78b00e766d2a0921

Contents?: true

Size: 1.93 KB

Versions: 6

Compression:

Stored size: 1.93 KB

Contents

=begin

Lesli

Copyright (c) 2023, Lesli Technologies, S. A.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/.

Lesli · Ruby on Rails SaaS Development Framework.

Made with ♥ by https://www.lesli.tech
Building a better future, one line of code at a time.

@contact  hello@lesli.tech
@website  https://www.lesli.tech
@license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html

// · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
// · 
=end

module Lesli
    class ApplicationLesliController < ApplicationController
        include Interfaces::Application::Authorization
        include Interfaces::Application::Customization
        include Interfaces::Application::Responder
        include Interfaces::Application::Requester
        include Interfaces::Application::Logger

        protect_from_forgery with: :exception

        before_action :set_path
        before_action :set_locale
        before_action :authorize_request
        before_action :authorize_privileges
        before_action :set_helpers_for_request
        before_action :set_customization

        after_action  :log_requests

        layout "lesli/layouts/application-lesli"

        # Rescue from "ParameterMissing" when using required params
        # in controllers
        rescue_from ActionController::ParameterMissing do |_e|
            respond_with_error("Missing params")
        end
    end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
lesli-5.0.11 app/controllers/lesli/application_lesli_controller.rb
lesli-5.0.10 app/controllers/lesli/application_lesli_controller.rb
lesli-5.0.9 app/controllers/lesli/application_lesli_controller.rb
lesli-5.0.7 app/controllers/lesli/application_lesli_controller.rb
lesli-5.0.6 app/controllers/lesli/application_lesli_controller.rb
lesli-5.0.5 app/controllers/lesli/application_lesli_controller.rb