forked from Groundpolis/Groundpolis
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Release 2022.07.03-milkey-2.8 (#72)"
This reverts commit 35eafcb.
- Loading branch information
Showing
32 changed files
with
81 additions
and
361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: Docker Image CI | ||
|
||
on: [push, pull_request, release] | ||
on: [push] | ||
|
||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: Node.js CI | ||
on: [push, pull_request, release] | ||
on: [push] | ||
|
||
jobs: | ||
build_and_test: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v16.20.2 | ||
v16.19.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "groundpolis-milkey", | ||
"version": "2022.07.03-milkey-2.8", | ||
"version": "2022.07.03-milkey-2.7", | ||
"private": true, | ||
"author": "Xeltica <[email protected]> , Minemu <[email protected]> , Azuki⪥ <[email protected]> , Remito <[email protected]> , atsu1125 <[email protected]>", | ||
"contributors": [ | ||
|
@@ -54,7 +54,6 @@ | |
"@koa/cors": "3.1.0", | ||
"@koa/multer": "3.0.0", | ||
"@koa/router": "9.0.1", | ||
"@peertube/http-signature": "1.7.0", | ||
"@sentry/browser": "7.5.1", | ||
"@sentry/tracing": "5.29.2", | ||
"@sinonjs/fake-timers": "10.0.0", | ||
|
@@ -229,13 +228,13 @@ | |
"sass": "1.49.9", | ||
"sass-loader": "13.2.0", | ||
"seedrandom": "3.0.5", | ||
"sharp": "0.32.6", | ||
"sharp": "0.31.1", | ||
"speakeasy": "2.0.0", | ||
"stringz": "2.1.0", | ||
"style-loader": "3.3.1", | ||
"summaly": "2.7.0", | ||
"syslog-pro": "1.0.0", | ||
"systeminformation": "5.21.7", | ||
"systeminformation": "5.12.6", | ||
"syuilo-password-strength": "0.0.1", | ||
"terser-webpack-plugin": "4.2.3", | ||
"textarea-caret": "3.1.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
import config from '../../../config'; | ||
import { ILocalUser, User } from '../../../models/entities/user'; | ||
|
||
export default (object: any, user: ILocalUser | User) => { | ||
if (object == null) return null; | ||
|
||
return { | ||
type: 'Undo', | ||
actor: `${config.url}/users/${user.id}`, | ||
object | ||
}; | ||
}; | ||
export default (object: any, user: ILocalUser | User) => ({ | ||
type: 'Undo', | ||
actor: `${config.url}/users/${user.id}`, | ||
object | ||
}); |
Oops, something went wrong.