Skip to content

Commit

Permalink
fix: Adds force-2fa to startup plan (#4994)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagoapolo authored Jan 14, 2025
1 parent 0681988 commit d0e2f76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/common/utils/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,6 @@ const Utils = Object.assign({}, require('./base/_utils'), {
case 'FLAG_OWNERS':
case 'RBAC':
case 'AUDIT':
case 'FORCE_2FA':
case '4_EYES': {
plan = 'scale-up'
break
Expand All @@ -423,7 +422,8 @@ const Utils = Object.assign({}, require('./base/_utils'), {

case 'SCHEDULE_FLAGS':
case 'CREATE_ADDITIONAL_PROJECT':
case '2FA': {
case '2FA':
case 'FORCE_2FA': {
plan = 'start-up' // startup or greater
break
}
Expand Down

0 comments on commit d0e2f76

Please sign in to comment.