Skip to content

Commit

Permalink
Merge pull request #12 from AiriAPI/staging
Browse files Browse the repository at this point in the history
Staging
  • Loading branch information
NotKyoyo authored Jul 7, 2021
2 parents 35a994d + 8bdb3d4 commit ab55a54
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "airi",
"version": "1.0.2",
"version": "1.0.3",
"description": "Random API Serving Anime stuff",
"author": "Kyoyo",
"private": true,
Expand Down
6 changes: 3 additions & 3 deletions src/models/schemas/Quotes.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ const { Schema, model } = require('mongoose')
const QuoteSchema = new Schema({
_id: { type: Number, required: true },
quote: { type: String, required: true },
anime: { type: String, },
name: { type: String, },
anime: { type: String },
said: { type: String, required: true },
})

module.exports = model('Quote', QuoteSchema)
module.exports = model('Quote', QuoteSchema)

0 comments on commit ab55a54

Please sign in to comment.