diff options
Diffstat (limited to 'app/controllers/api/user_accounts_controller.rb')
-rw-r--r-- | app/controllers/api/user_accounts_controller.rb | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/app/controllers/api/user_accounts_controller.rb b/app/controllers/api/user_accounts_controller.rb index 0825d33..b95105f 100644 --- a/app/controllers/api/user_accounts_controller.rb +++ b/app/controllers/api/user_accounts_controller.rb @@ -2,7 +2,13 @@ module Api # The UserAccounts controller. - class UserAccountsController < ApplicationController + class UserAccountsController < AuthenticatedController + skip_before_action :validate_jwt, only: [:create] + + def show + render json: serialized_user_account.serializable_hash + end + def create @user_account = UserAccount.new(permitted_params) @@ -14,12 +20,14 @@ module Api render json: Serializers::UserAccountSerializer.new(@user_account).serializable_hash end - # TODO: Must set authentication before defining the show method. - private def permitted_params params.require(:user_account).permit(:email, :first_name, :last_name, :password) end + + def serialized_user_account + @serialized_user_account ||= Serializers::UserAccountSerializer.new(current_user_account) + end end end |