1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-21 16:34:15 +00:00
2024-04-25 20:24:29 +00:00

14 lines
272 B
JavaScript
Executable File

export default {
name: "RefreshToken",
collection: "refresh_tokens",
schema: {
authToken: {
type: String,
required: true,
},
refreshToken: {
type: String,
required: true,
}
}
}