mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
7 lines
193 B
JavaScript
Executable File
7 lines
193 B
JavaScript
Executable File
import withAuthentication from "../withAuthentication"
|
|
|
|
export default async (req, res, next) => {
|
|
if (req.headers?.authorization) {
|
|
await withAuthentication(req, res, next)
|
|
}
|
|
} |