mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-03 18:50:05 +00:00
4 lines
153 B
TypeScript
4 lines
153 B
TypeScript
export const isAuthorizeFormRequired = (response: string): boolean => {
|
|
return /<form.+action="(.*Logon\/oauth\/authorize[^"]*).*>/gm.test(response)
|
|
}
|