Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 78cda0fe50 | |||
| 7d40005e7d | |||
| 855de182ea | |||
| a96e7d9344 |
@@ -48,6 +48,7 @@ GET /news/archive/:id
|
|||||||
"title": title, //title of the article
|
"title": title, //title of the article
|
||||||
"author": author, //author of the aricle
|
"author": author, //author of the aricle
|
||||||
"body": body, //body of the article
|
"body": body, //body of the article
|
||||||
|
"rendered": rendered //body rendered as HTML
|
||||||
"edits": edits //number of times this article has been edited
|
"edits": edits //number of times this article has been edited
|
||||||
"createdAt": createdAt //time created
|
"createdAt": createdAt //time created
|
||||||
"updatedAt": updatedAt //time updated
|
"updatedAt": updatedAt //time updated
|
||||||
|
|||||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "news-server",
|
"name": "news-server",
|
||||||
"version": "1.4.0",
|
"version": "1.4.2",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "news-server",
|
"name": "news-server",
|
||||||
"version": "1.4.0",
|
"version": "1.4.2",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"cors": "^2.8.5",
|
"cors": "^2.8.5",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "news-server",
|
"name": "news-server",
|
||||||
"version": "1.4.0",
|
"version": "1.4.2",
|
||||||
"description": "An API centric news server. Uses Sequelize and mariaDB by default.",
|
"description": "An API centric news server. Uses Sequelize and mariaDB by default.",
|
||||||
"main": "server/server.js",
|
"main": "server/server.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
const { Op } = require('sequelize');
|
const { Op } = require('sequelize');
|
||||||
const { articles, revisions } = require('../database/models');
|
const { articles, revisions } = require('../database/models');
|
||||||
const markdownIt = require('markdown-it')();
|
const markdownIt = require('markdown-it')({ html: true });
|
||||||
|
|
||||||
const route = async (req, res) => {
|
const route = async (req, res) => {
|
||||||
//get the existing record
|
//get the existing record
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ router.get('/archive/metadata/:id(\\d+)', query(true, true));
|
|||||||
//use middleware to authenticate the rest of the routes
|
//use middleware to authenticate the rest of the routes
|
||||||
router.use(authToken);
|
router.use(authToken);
|
||||||
router.use((req, res, next) => {
|
router.use((req, res, next) => {
|
||||||
if (req.user.admin) {
|
if (req.user.mod) {
|
||||||
next();
|
next();
|
||||||
} else {
|
} else {
|
||||||
res.status(403).end();
|
res.status(403).end();
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
const { articles } = require('../database/models');
|
const { articles } = require('../database/models');
|
||||||
const markdownIt = require('markdown-it')();
|
const markdownIt = require('markdown-it')({ html: true });
|
||||||
|
|
||||||
const route = async (req, res) => {
|
const route = async (req, res) => {
|
||||||
//check for missing data
|
//check for missing data
|
||||||
|
|||||||
Reference in New Issue
Block a user