# 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