Sha256: b22913713836a77144bffe187fa65feb4edd8aa361fff8eea2c40711731ac8cc

Contents?: true

Size: 393 Bytes

Versions: 6

Compression:

Stored size: 393 Bytes

Contents

class MiscellaneousController < ApplicationController
  include Commons::Authentication::AuthenticateByJWT
  # always include your handlers first in order to preserve last priority
  # https://stackoverflow.com/a/9121054/3287738
  include DefaultHandling
  include Commons::Errors::DefaultHandling

  before_action :authorize_jwt!

  def application_parameters
    render json: [{}]
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
commons_yellowme-0.16.0 spec/dummy/app/controllers/miscellaneous_controller.rb
commons_yellowme-0.15.0 spec/dummy/app/controllers/miscellaneous_controller.rb
commons_yellowme-0.12.0 spec/dummy/app/controllers/miscellaneous_controller.rb
commons_yellowme-0.11.3 spec/dummy/app/controllers/miscellaneous_controller.rb
commons_yellowme-0.11.2 spec/dummy/app/controllers/miscellaneous_controller.rb
commons_yellowme-0.11.1 spec/dummy/app/controllers/miscellaneous_controller.rb