18F/identity-idp

View on GitHub
app/controllers/users/please_call_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Users
  class PleaseCallController < ApplicationController
    before_action :confirm_two_factor_authenticated

    def show
      analytics.user_suspended_please_call_visited
    end
  end
end