mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-23 15:33:09 +02:00
[Server] Misskey API server is now accept a JSON as well as a application/x-www-form-urlencoded
Related to #154
This commit is contained in:
parent
7d1983470d
commit
1894e9052a
1 changed files with 1 additions and 0 deletions
|
@ -18,6 +18,7 @@ const app = express();
|
|||
app.disable('x-powered-by');
|
||||
app.set('etag', false);
|
||||
app.use(bodyParser.urlencoded({ extended: true }));
|
||||
app.use(bodyParser.json());
|
||||
app.use(cors({
|
||||
origin: true
|
||||
}));
|
||||
|
|
Loading…
Reference in a new issue