Take `addUploader` as an example: ```dart Future addUploader(String package, String userEmail); ``` We don't know information of the operator. How about changing it to: ```dart Future addUploader(String package, String userEmail, {shelf.Request request}); ``` Now we could get Google OAuth token from `request.headers` then do permission things.
Take
addUploaderas an example:We don't know information of the operator. How about changing it to:
Now we could get Google OAuth token from
request.headersthen do permission things.