Page MenuHomePhabricator

Modularize Dashboard Panel transactionns
ClosedPublic

Authored by epriestley on Apr 2 2019, 5:00 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Jan 14, 2:15 PM
Unknown Object (File)
Sun, Dec 29, 8:01 AM
Unknown Object (File)
Dec 19 2024, 3:58 PM
Unknown Object (File)
Dec 19 2024, 10:32 AM
Unknown Object (File)
Dec 7 2024, 11:05 AM
Unknown Object (File)
Dec 5 2024, 4:36 AM
Unknown Object (File)
Nov 24 2024, 12:00 AM
Unknown Object (File)
Oct 25 2024, 12:51 AM
Subscribers
None

Details

Summary

Depends on D20369. Ref T13272. Move toward a world where we can edit panels with just one controller, instead of separate "Edit" and "Editpro" controllers.

Test Plan

Created and edited panels. This will get vetted more thoroughly after additional changes.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

amckinley added inline comments.
src/applications/dashboard/xaction/panel/PhabricatorDashboardPanelNameTransaction.php
64–69

Isn't this the default implementation for ModularTransactions?

This revision is now accepted and ready to land.Apr 3 2019, 6:53 PM
src/applications/dashboard/xaction/panel/PhabricatorDashboardPanelNameTransaction.php
64–69

By default, we don't expose anything to Conduit.

Some transactions have complex/weird/sensitive/not-good-for-API-users details, and if we exposed them by default we might end up in trouble (maybe users trying to use them and complaining that they're impossible to work with; maybe users complaining that we broke compatibility if we then fix it; maybe actual security problems), so we err on the side of caution and require each transaction have an explicit implementation.

In this case (and other simple cases) there's an obviously reasonable way to represent the transaction, but I just delete / don't implement these methods a lot of the time if there's any ambiguity.

Usually, this only impacts webhooks trying to do something with the event.

This revision was automatically updated to reflect the committed changes.