Igalia / phpreport

Web tool for project time tracking and project management.
http://igalia.github.io/phpreport/
GNU General Public License v3.0
30 stars 12 forks source link

Refactor rest of infra #787

Closed negreirosleo closed 9 months ago

negreirosleo commented 9 months ago

This PR changes the rest of the files in /infra to use the factory pattern:

// from
getSomething = async (apiClient: apiClient) => {}

// to
makeGetSomething = (apiClient: apiClient) => async () => {}

This change is to ensure that all functions that depend on an apiClient will receive the argument the same way, to make it standardized.