user_controller.cr

Copy & Paste the code block below into: controllers/user_controller.cr

class UserController < Mochi::Authenticable::Controllers::UserController
  def show
    super
  end

  def new
    super
  end

  def edit
    super
  end

  def create
    super
  end

  def update
    super
  end

  def destroy
    super
  end
end

Last updated