hummingbird-me/hummingbird

View on GitHub
app/controllers/settings_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class SettingsController < ApplicationController
  before_action :authenticate_user!

  def index
    render layout: 'redesign'
  end

  def resend_confirmation
    current_user.resend_confirmation_instructions
    render json: true
  end
end