af83/chouette-core

View on GitHub
app/controllers/api/v1/base_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Api
  module V1
    class BaseController < ::ActionController::API
      include ::ActionController::HttpAuthentication::Basic::ControllerMethods
      include ::ActionController::HttpAuthentication::Token::ControllerMethods
    end
  end
end