AlexPatriquin/poem-today

View on GitHub
app/controllers/registrations_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class RegistrationsController < Devise::RegistrationsController
  protected

  def after_sign_up_path_for(resource)
    poem_path(current_user.user_poems.first.poem_id)
  end
end