asm-products/verba

View on GitHub
app/controllers/authenticated_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AuthenticatedController < ApplicationController
  before_action :require_user
  before_action :require_subscriber, if: Proc.new { feature_active?(:payments) }
end