AuthVerifyDeviceUI returns the frontend URL for the device auth verification page.
(query map[string]string)
| 232 | |
| 233 | // AuthVerifyDeviceUI returns the frontend URL for the device auth verification page. |
| 234 | func (u *URLs) AuthVerifyDeviceUI(query map[string]string) string { |
| 235 | return urlutil.MustWithQuery(urlutil.MustJoinURL(u.Frontend(), "/-/auth/device"), query) |
| 236 | } |
| 237 | |
| 238 | // AuthCLISuccessUI returns the frontend URL to redirect to after successful CLI authentication. |
| 239 | func (u *URLs) AuthCLISuccessUI() string { |
no test coverage detected