10 lines
175 B
TypeScript
10 lines
175 B
TypeScript
|
export const WhereCredsEqualsId = (userId: string) => ({
|
||
|
where: {
|
||
|
type: "slack_app",
|
||
|
key: {
|
||
|
path: ["authed_user", "id"],
|
||
|
equals: userId,
|
||
|
},
|
||
|
},
|
||
|
});
|