Skip to content

Instantly share code, notes, and snippets.

View thedelchop's full-sized avatar

Joseph DelCioppio thedelchop

View GitHub Profile
@thedelchop
thedelchop / RegistrationsController
Last active January 15, 2016 16:09
A controller that can not be extended without being modified
class RegistrationsController < ApplicationController
def create
# Some logic to sign up
render json: @user, each_serializer: UserSerializer
end
end