Skip to content

Commit

Permalink
use CLAIM_SLUGS for slugs that are not RESULTS_SLUGS
Browse files Browse the repository at this point in the history
  • Loading branch information
alkesh committed Aug 21, 2024
1 parent 37ff8c1 commit d3e8471
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module EarlyYearsPayment
module Provider
module Authenticated
class SlugSequence
ELIGIBILITY_SLUGS = %w[
CLAIM_SLUGS = %w[
consent
current-nursery
paye-reference
Expand All @@ -19,7 +19,7 @@ class SlugSequence
ineligible
].freeze

SLUGS = (ELIGIBILITY_SLUGS + RESULTS_SLUGS).freeze
SLUGS = (CLAIM_SLUGS + RESULTS_SLUGS).freeze

MAGIC_LINK_SLUG = "consent"

Expand Down

0 comments on commit d3e8471

Please sign in to comment.