1
0
Atzarojums 0
spoguļota no https://gitlab.com/Alamantus/Readlebee.git sinhronizēta 2025-06-30 21:24:18 +02:00

Fix incorrect declarations

Šis iesūtījums ir iekļauts:
Robbie Antenesse 2020-02-06 17:27:22 -07:00
vecāks 963049e4c8
iesūtījums ccf55e1955
2 izmainītas datnes ar 3 papildinājumiem un 3 izdzēšanām

Apskatīt datni

@ -1,4 +1,4 @@
const BooksController = require('../controllers/books');
const BooksController = require('../controllers/bookData');
async function routes(fastify, options) {
fastify.get('/api/books', async (request, reply) => {

Apskatīt datni

@ -49,10 +49,10 @@ module.exports = sequelize => sequelize.define('Follow', {
}, {
indexes: [
{
fields: ['follower', 'domain'],
fields: ['follower', 'followerDomain'],
},
{
fields: ['following', 'domain'],
fields: ['following', 'followingDomain'],
},
],
scopes: {