From 0aef76c479bc7fc758e70e1cd478ade46761b51b Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 25 Aug 2017 11:45:31 +0200 Subject: Formated -> Formatted --- server/controllers/api/users.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'server/controllers/api/users.ts') diff --git a/server/controllers/api/users.ts b/server/controllers/api/users.ts index f50dbc9a3..04d885185 100644 --- a/server/controllers/api/users.ts +++ b/server/controllers/api/users.ts @@ -2,7 +2,7 @@ import * as express from 'express' import { database as db } from '../../initializers/database' import { USER_ROLES } from '../../initializers' -import { logger, getFormatedObjects } from '../../helpers' +import { logger, getFormattedObjects } from '../../helpers' import { authenticate, ensureIsAdmin, @@ -17,7 +17,7 @@ import { setUsersSort, token } from '../../middlewares' -import { UserVideoRate as FormatedUserVideoRate, UserCreate, UserUpdate } from '../../../shared' +import { UserVideoRate as FormattedUserVideoRate, UserCreate, UserUpdate } from '../../../shared' const usersRouter = express.Router() @@ -95,7 +95,7 @@ function createUser (req: express.Request, res: express.Response, next: express. function getUserInformation (req: express.Request, res: express.Response, next: express.NextFunction) { db.User.loadByUsername(res.locals.oauth.token.user.username) - .then(user => res.json(user.toFormatedJSON())) + .then(user => res.json(user.toFormattedJSON())) .catch(err => next(err)) } @@ -106,7 +106,7 @@ function getUserVideoRating (req: express.Request, res: express.Response, next: db.UserVideoRate.load(userId, videoId, null) .then(ratingObj => { const rating = ratingObj ? ratingObj.type : 'none' - const json: FormatedUserVideoRate = { + const json: FormattedUserVideoRate = { videoId, rating } @@ -118,7 +118,7 @@ function getUserVideoRating (req: express.Request, res: express.Response, next: function listUsers (req: express.Request, res: express.Response, next: express.NextFunction) { db.User.listForApi(req.query.start, req.query.count, req.query.sort) .then(resultList => { - res.json(getFormatedObjects(resultList.data, resultList.total)) + res.json(getFormattedObjects(resultList.data, resultList.total)) }) .catch(err => next(err)) } -- cgit v1.2.3