class Custom::RegistrationsController

Public Instance Methods

create() click to toggle source
# File test/rails_app/app/controllers/custom/registrations_controller.rb, line 8
def create
  super do |resource|
    @create_block_called = true
  end
end
create_block_called?() click to toggle source
# File test/rails_app/app/controllers/custom/registrations_controller.rb, line 20
def create_block_called?
  @create_block_called == true
end
new() click to toggle source
# File test/rails_app/app/controllers/custom/registrations_controller.rb, line 2
def new
  super do |resource|
    @new_block_called = true
  end
end
new_block_called?() click to toggle source
# File test/rails_app/app/controllers/custom/registrations_controller.rb, line 28
def new_block_called?
  @new_block_called == true
end
update() click to toggle source
# File test/rails_app/app/controllers/custom/registrations_controller.rb, line 14
def update
  super do |resource|
    @update_block_called = true
  end
end
update_block_called?() click to toggle source
# File test/rails_app/app/controllers/custom/registrations_controller.rb, line 24
def update_block_called?
  @update_block_called == true
end