Page MenuHomePhabricator

Add Project to quick create menu
ClosedPublic

Authored by chad on Nov 22 2014, 3:43 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 11 2024, 11:46 PM
Unknown Object (File)
Feb 9 2024, 4:55 PM
Unknown Object (File)
Feb 9 2024, 4:51 PM
Unknown Object (File)
Feb 6 2024, 4:32 AM
Unknown Object (File)
Feb 6 2024, 1:59 AM
Unknown Object (File)
Dec 30 2023, 6:27 PM
Unknown Object (File)
Dec 27 2023, 12:14 AM
Unknown Object (File)
Dec 26 2023, 8:30 PM
Subscribers

Details

Reviewers
epriestley
Commits
Restricted Diffusion Commit
rP12f3f6d3a9ef: Add Project to quick create menu
Summary

Helpful shortcut, I make quite a few at least

Test Plan

Click on dropdown, then Project. Get to Project Create page

Diff Detail

Repository
rP Phabricator
Branch
proj-quick
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 3131
Build 3137: [Placeholder Plan] Wait for 30 Seconds

Event Timeline

chad retitled this revision from to Add Project to quick create menu.
chad updated this object.
chad edited the test plan for this revision. (Show Details)
chad added a reviewer: epriestley.
epriestley edited edge metadata.

We should only add this item if the viewer can create a project (or should disable it if they can not).

From within a controller you can normally call $this->hasApplicationCapability(...) to test the viewer for a capability like this, but that isn't available from within an Application object. You can do this instead:

$can_create = PhabricatorPolicyFilter::hasCapability(
  $viewer,
  $this,
  ProjectCreateProjectsCapability::CAPABILITY);
This revision now requires changes to proceed.Nov 22 2014, 3:58 PM
chad edited edge metadata.
  • Update per comments
epriestley edited edge metadata.
This revision is now accepted and ready to land.Nov 22 2014, 7:35 PM
This revision was automatically updated to reflect the committed changes.