1
0
Fork 0
mirror of synced 2024-07-15 11:15:59 +12:00
budibase/packages/worker/src/api/controllers/global/self.js

12 lines
224 B
JavaScript
Raw Normal View History

exports.generateAPIKey = async ctx => {
ctx.body = {
apiKey: "a175402a-89fc-11ec-a8a3-0242ac120002",
}
}
exports.fetchAPIKey = async ctx => {
ctx.body = {
apiKey: "a175402a-89fc-11ec-a8a3-0242ac120002",
}
}