+ def create
+ @client_application = current_user.client_applications.build(application_params)
+ if @client_application.save
+ flash[:notice] = t ".flash"
+ redirect_to :action => "show", :id => @client_application.id
+ else
+ render :action => "new"
+ end