10 lines
297 B
Ruby
10 lines
297 B
Ruby
class Verification::VerifiedUserController < ApplicationController
|
|
before_action :authenticate_user!
|
|
before_action :verify_verified!
|
|
skip_authorization_check
|
|
|
|
def show
|
|
@verified_users = VerifiedUser.by_user(current_user)
|
|
redirect_to new_sms_path if @verified_users.blank?
|
|
end
|
|
end |