mirror of
https://github.com/strapi/strapi.git
synced 2025-08-14 19:56:41 +00:00

* feat: add drag-and-drop to relations Co-Authored-By: Marc Roig <20578351+Marc-Roig@users.noreply.github.com> * chore: spelling mistakes * chore: fix mainField accessing * chore: remove comment code Co-Authored-By: Marc Roig <marc12info@gmail.com> --------- Co-authored-by: Marc Roig <20578351+Marc-Roig@users.noreply.github.com> Co-authored-by: Marc Roig <marc12info@gmail.com>
29 lines
688 B
JavaScript
29 lines
688 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
/**
|
|
* An asynchronous register function that runs before
|
|
* your application is initialized.
|
|
*
|
|
* This gives you an opportunity to extend code.
|
|
*/
|
|
register({ strapi }) {},
|
|
|
|
/**
|
|
* An asynchronous bootstrap function that runs before
|
|
* your application gets started.
|
|
*
|
|
* This gives you an opportunity to set up your data model,
|
|
* run jobs, or perform some special logic.
|
|
*/
|
|
async bootstrap({ strapi }) {},
|
|
|
|
/**
|
|
* An asynchronous destroy function that runs before
|
|
* your application gets shut down.
|
|
*
|
|
* This gives you an opportunity to gracefully stop services you run.
|
|
*/
|
|
destroy({ strapi }) {},
|
|
};
|