File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ abstract class Permissions {
4444 // Allows deleting the authenticated user's own account
4545 static const String userDeleteOwned = 'user.delete_owned' ;
4646
47-
4847 // Allows updating any user's profile (admin-only).
4948 // This is distinct from `userUpdateOwned`, which allows a user to update
5049 // their own record.
Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ class DataOperationRegistry {
304304 );
305305 // The validation passed, so we can now safely pass the full User
306306 // object from the request to the repository, honoring the contract.
307- return await context.read <DataRepository <User >>().update (
307+ return context.read <DataRepository <User >>().update (
308308 id: id,
309309 item: requestedUpdateUser,
310310 userId: uid,
You can’t perform that action at this time.
0 commit comments