Page MenuHomePhorge

Code de-duplication, API unification
ClosedPublic

Authored by machniak on Nov 18 2021, 1:10 PM.
Tags
None
Referenced Files
F16178265: D3038.id8669.diff
Thu, Oct 17, 5:32 AM
Unknown Object (File)
Sun, Oct 6, 10:53 PM
Unknown Object (File)
Sep 7 2024, 4:09 AM
Unknown Object (File)
Sep 7 2024, 3:39 AM
Unknown Object (File)
Aug 29 2024, 9:29 PM
Unknown Object (File)
Aug 18 2024, 10:16 AM
Unknown Object (File)
Aug 3 2024, 7:02 PM
Unknown Object (File)
Aug 3 2024, 7:02 PM
Subscribers
Restricted Project

Details

Reviewers
mollekopf
Group Reviewers
Restricted Project
Commits
rK4211ad138d60: Code de-duplication, API unification
Test Plan

./phpunit

Diff Detail

Repository
rK kolab
Branch
dev/dedup
Lint
No Lint Coverage
Unit
No Test Coverage
Build Status
Buildable 37136
Build 14840: arc lint + arc unit

Event Timeline

machniak created this revision.
  • De-duplicate code for handling status update process
mollekopf subscribed.
mollekopf added inline comments.
src/app/Http/Controllers/Controller.php
210

Personally I would prefer passing $objectProps as argument instead of $full, unless $objectProps becomes useful for other functions as well.

It would make it a bit clearer IMO what's going on: Either you serialize everything, or just the requested $objectProps.

That's not a blocker though.

This revision is now accepted and ready to land.Nov 19 2021, 2:39 PM
src/app/Http/Controllers/Controller.php
210

Yes, but this way we define the common props once (per object type), so we don't have to pass them all the time as an argument. This makes also the API responses unified "automatically", i.e. reseller, admin, user end-points, all of them return the same set of object properties.

This revision was automatically updated to reflect the committed changes.