Make GL_ID format consistent
ZD Reference: https://gitlab.zendesk.com/agent/tickets/43481
Our git hooks are currently relying on the
GL_IDvariable passed in by GitLab to determine the username for additional authentication. We access the user info via the internal/discover API method which takes akey_idparameter.
However, the issue we currently have is that the
GL_IDis received askey-#when pushing via SSH, butuser-#when pushing via UI (eg. merge request) or via API methods (eg. creating a branch).
We would like the
GL_IDto either be consistent – i.e. alwayskey-#-- or the internal/discover API method to also accept auser_idparameter.