mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 03:29:25 +01:00
10 lines
359 B
TypeScript
10 lines
359 B
TypeScript
import { CollectionUpdateService } from '#services/collection_update_service'
|
|
import type { HttpContext } from '@adonisjs/core/http'
|
|
|
|
export default class CollectionUpdatesController {
|
|
async checkForUpdates({}: HttpContext) {
|
|
const collectionUpdateService = new CollectionUpdateService()
|
|
return await collectionUpdateService.checkForUpdates()
|
|
}
|
|
}
|