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
F13082048: D17337.diff
Wed, Apr 24, 9:58 PM
Unknown Object (File)
Tue, Apr 23, 9:04 PM
Unknown Object (File)
Tue, Apr 23, 9:04 PM
Unknown Object (File)
Tue, Apr 23, 9:04 PM
Unknown Object (File)
Tue, Apr 23, 9:04 PM
Unknown Object (File)
Sun, Apr 21, 3:57 PM
Unknown Object (File)
Wed, Apr 17, 3:03 PM
Unknown Object (File)
Thu, Apr 11, 7:13 AM
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
Lint
Lint Not Applicable
Unit
Tests Not Applicable

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.