-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor!: update auth-service to latest thirdparty api definition #106
Conversation
migrations/20220322001917_address.ts
Outdated
.then((exists: boolean): Knex.SchemaBuilder | void => { | ||
if (exists) { | ||
return knex.schema.alterTable('Scope', function (table) { | ||
table.renameColumn('address', 'address') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this migration doing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is ment to rename accountId to address. I must be sleep deprived.
} | ||
|
||
export function down (knex: Knex): Promise<void | Knex.SchemaBuilder> { | ||
return knex.schema.hasTable('Scope') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is meant to reverse whatever the migration was, but I'm not sure what that is, so I can't tell if this is correct
@@ -49,13 +49,13 @@ const PostThirdpartyRequestsVerificationsRequest = { | |||
}, | |||
params: {}, | |||
payload: { | |||
//TODO: | |||
// TODO: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO what? Either we need a follow-up story to do whats needed here or remove this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed.
src/domain/challenge.ts
Outdated
const RFC8785String = canonicalize(rawChallenge) | ||
console.log(RFC8785String) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
debug maybe?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks! removed.
No description provided.