mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
FYI: @Tirokk I think we'll never remove or add new badges through graphql. Instead, we will seed them manually with direct access to the database. Therefore I removed the respective mutations and also your tests regarding permissions.
9 lines
339 B
JavaScript
9 lines
339 B
JavaScript
// NOTE: We cannot use `fs` here to clean up the code. Cypress breaks on any npm
|
|
// module that is not browser-compatible. Node's `fs` module is server-side only
|
|
export default {
|
|
Badge: require('./Badge.js'),
|
|
User: require('./User.js'),
|
|
InvitationCode: require('./InvitationCode.js'),
|
|
EmailAddress: require('./EmailAddress.js'),
|
|
}
|