Remove integrations #273
Loading…
Reference in a new issue
No description provided.
Delete branch "feature/remove-integration"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@Johann150 listed all Foundkey servers that currently have any integration enabled and it turns out that it is not many, extending this test to Misskey would probably yield most of the servers not supporting it either.
The implementation is a bit weird (only sign in, no sign up is supported) and not really documented or explained well in the admin panel either, probably leading to its low adoption in the first place.
This Pull Request removes everything related to integrations.
Found some small nitpicks.
@ -418,4 +404,0 @@
}
};
function addService(target: { [x: string]: any }, source: IApPropertyValue) {
Remove unused import of
IApPropertyValue
.@ -1,294 +0,0 @@
import Koa from 'koa';
import Router from '@koa/router';
import { OAuth2 } from 'oauth';
The
oauth
package seems to be unused now so can be removed.removed
@types/oauth
andautwh
(since latter actually gets us theoauth
dependency)You'll need to also remove all of the_services
locales inen-US.yml
since those are obviously not used anymore.Nvm, seems like you did it.