Renames
This commit is contained in:
parent
165d86c246
commit
251663f38c
|
@ -18,7 +18,7 @@ export async function fetchDefinitions(ctx: Ctx) {
|
|||
ctx.status = 200
|
||||
}
|
||||
|
||||
export async function migrationCompleted(ctx: Ctx) {
|
||||
export async function getMigrationStatus(ctx: Ctx) {
|
||||
const appId = context.getAppId()
|
||||
|
||||
if (!appId) {
|
||||
|
|
|
@ -11,6 +11,6 @@ router
|
|||
auth.internalApi,
|
||||
migrationsController.fetchDefinitions
|
||||
)
|
||||
.get("/api/migrations/status", migrationsController.migrationCompleted)
|
||||
.get("/api/migrations/status", migrationsController.getMigrationStatus)
|
||||
|
||||
export default router
|
||||
|
|
Loading…
Reference in New Issue