mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
client/js: format code to ESLint
This commit is contained in:
@ -51,7 +51,7 @@ class UserListController {
|
||||
defaultLimit: 30,
|
||||
getClientUrlForPage: (offset, limit) => {
|
||||
const parameters = Object.assign(
|
||||
{}, this._ctx.parameters, {offset, offset, limit: limit});
|
||||
{}, this._ctx.parameters, {offset: offset, limit: limit});
|
||||
return uri.formatClientLink('users', parameters);
|
||||
},
|
||||
requestPage: (offset, limit) => {
|
||||
@ -71,5 +71,7 @@ class UserListController {
|
||||
module.exports = router => {
|
||||
router.enter(
|
||||
['users'],
|
||||
(ctx, next) => { ctx.controller = new UserListController(ctx); });
|
||||
(ctx, next) => {
|
||||
ctx.controller = new UserListController(ctx);
|
||||
});
|
||||
};
|
||||
|
Reference in New Issue
Block a user