Sha256: cdd6d86dff57ee5e191ad44cd831f7c8e5c887dcc02a05d4e6644c83be06d1a5
Contents?: true
Size: 1.16 KB
Versions: 4
Compression:
Stored size: 1.16 KB
Contents
# == Cadenero::Account::UsersController for creating the users associated to an account # # Inherates methods from the [::ApplicationController] extender # @author Manuel Vidaurre @mvidaurre <manuel.vidaurre@agiltec.com.mx> require_dependency "cadenero/application_controller" module Cadenero module V1 class Account::UsersController < Cadenero::ApplicationController # Create a [Cadenero::User] based on the params sended by the client as a JSON with the user inrormation # # @example Posting the user data to be created in an account via the subdomain # post "http://#{account.subdomain}.example.com/v1/sign_up", # user: { email: "user@example.com", password: "password", password_confirmation: "password" } # # @return render JSON of [Cadenero::User] created and the status 201 Created: The request has been # fulfilled and resulted in a new resource being created.. def create account = Cadenero::V1::Account.where(subdomain: request.subdomain).first @user = account.users.create(params[:user]) force_authentication!(@user) render json: @user, status: 201 end end end end
Version data entries
4 entries across 4 versions & 1 rubygems