summaryrefslogtreecommitdiff
path: root/app/controllers/api/authentications_controller.rb
blob: 90f04d8a8f9199ed342c931f8026f0493e981981 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Api
  # The controller that handles authentications.
  class AuthenticationsController < ApplicationController
    def create; end

    def destroy; end

    def refresh; end

    private

    def permitted_params
      params.require(:user_account).permit(:email, :password)
    end
  end
end