Page MenuHomePhorge

Code de-duplication, API unification
ClosedPublic

Authored by machniak on Nov 18 2021, 1:10 PM.
Tags
None
Referenced Files
F10604263: D3038.id.diff
Wed, Dec 6, 11:57 AM
Unknown Object (File)
Tue, Nov 14, 6:35 AM
Unknown Object (File)
Nov 4 2023, 12:08 PM
Unknown Object (File)
Nov 4 2023, 4:24 AM
Unknown Object (File)
Oct 25 2023, 10:47 PM
Unknown Object (File)
Oct 13 2023, 11:15 PM
Unknown Object (File)
Sep 30 2023, 1:26 AM
Unknown Object (File)
Sep 29 2023, 6:41 AM
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
Lint
Lint Not Applicable
Unit
Tests Not Applicable

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.