Page MenuHomePhabricator

Don't show an auth provider as enabled if it's still being created
ClosedPublic

Authored by amckinley on Feb 11 2017, 12:57 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Jun 18, 2:45 AM
Unknown Object (File)
Wed, Jun 18, 2:45 AM
Unknown Object (File)
Wed, Jun 18, 2:40 AM
Unknown Object (File)
Wed, Jun 18, 2:06 AM
Unknown Object (File)
May 21 2025, 7:32 PM
Unknown Object (File)
May 20 2025, 2:54 PM
Unknown Object (File)
May 9 2025, 3:10 AM
Unknown Object (File)
May 6 2025, 6:41 PM
Subscribers

Details

Test Plan

attempted to create a new auth provider; observed that "enabled" ui element does not render. viewed existing auth provider and observed that "enabled" ui element still renders

Diff Detail

Repository
rP Phabricator
Branch
master
Lint
Lint Passed
Unit
Tests Skipped
Build Status
Buildable 15593
Build 20575: arc lint + arc unit

Event Timeline

Maybe a little simpler like this? Should be the same logically, I think.

if (!$is_new) {
  if ($config->getIsEnabled()) {
    // ...
  } else {
    // ...
  }
}
This revision now requires changes to proceed.Feb 11 2017, 1:04 AM

(I'll just tweak that in the pull.)

This revision is now accepted and ready to land.Feb 13 2017, 3:02 PM
This revision was automatically updated to reflect the committed changes.