mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-23 11:37:02 -04:00
Refactored dropbox.js -> dropbox.ts
Signed-off-by: Yannick Bungers <git@innay.de> Signed-off-by: David Mehren <dmehren1@gmail.com>
This commit is contained in:
parent
c075eb769f
commit
620468e843
1 changed files with 7 additions and 9 deletions
|
@ -1,12 +1,10 @@
|
||||||
'use strict'
|
import passport from 'passport'
|
||||||
|
import { config } from '../../../config'
|
||||||
|
import { passportGeneralCallback } from '../utils'
|
||||||
|
import { Router, Response, NextFunction, Request } from 'express'
|
||||||
|
import * as DropboxStrategy from 'passport-dropbox-oauth2'
|
||||||
|
|
||||||
const Router = require('express').Router
|
export const dropboxAuth = Router()
|
||||||
const passport = require('passport')
|
|
||||||
const DropboxStrategy = require('passport-dropbox-oauth2').Strategy
|
|
||||||
const config = require('../../../config')
|
|
||||||
const { passportGeneralCallback } = require('../utils')
|
|
||||||
|
|
||||||
let dropboxAuth = module.exports = Router()
|
|
||||||
|
|
||||||
passport.use(new DropboxStrategy({
|
passport.use(new DropboxStrategy({
|
||||||
apiVersion: '2',
|
apiVersion: '2',
|
||||||
|
@ -15,7 +13,7 @@ passport.use(new DropboxStrategy({
|
||||||
callbackURL: config.serverURL + '/auth/dropbox/callback'
|
callbackURL: config.serverURL + '/auth/dropbox/callback'
|
||||||
}, passportGeneralCallback))
|
}, passportGeneralCallback))
|
||||||
|
|
||||||
dropboxAuth.get('/auth/dropbox', function (req, res, next) {
|
dropboxAuth.get('/auth/dropbox', function (req: Request, res: Response, next: NextFunction) {
|
||||||
passport.authenticate('dropbox-oauth2')(req, res, next)
|
passport.authenticate('dropbox-oauth2')(req, res, next)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue