diff --git a/README.md b/README.md
index f38b08c..e6b7c4b 100644
--- a/README.md
+++ b/README.md
@@ -1,72 +1,10 @@
-## Note for Visitors
-* This README mainly contains information for operation but not usage. API documentation is available [here](https://enstrayed.com/posts/20240409-API-Documentation.html).
-* Have feedback or experiencing a problem with an endpoint? Please [open a GitHub issue](https://github.com/Enstrayed/enstrayedapi/issues/new).
-* Security problem? [Open a ticket here](https://helpdesk.enstrayed.com/open.php) with the topic set as 'Responsible Disclosure'.
+## Note for passersby
+* If you have feedback or are experiencing a problem, [click here](https://enstrayed.com/helpdesk/ticket/new?form=TBD).
+* If you need to report a security issue, [click here](https://enstrayed.com/helpdesk/ticket/new?form=TBD).
* This code is unlicensed but I don't really care if you use parts of it (I don't know why you would though).
-## Configuration
-
-Configuration
-
-```json
-{
- "oidc": {
- "clientId": "nowaybuddy",
- "tokenUrl": "https://login.enstrayed.com/application/o/token/",
- "userinfoUrl": "https://login.enstrayed.com/application/o/userinfo/",
- "authorizeUrl": "https://login.enstrayed.com/application/o/authorize/",
- "clientSecret": "nowaybuddy"
- },
- "email": {
- "host": "orenco.enstrayed.com",
- "password": "nowaybuddy",
- "username": "nowaybuddy"
- },
- "nowplaying": {
- "cider": {
- "hosts": [],
- "apiKeys": []
- },
- "lastfm": {
- "apiKey": "nowaybuddy",
- "target": "enstrayed"
- },
- "jellyfin": {
- "host": "http://hawthorne.pizzly-catfish.ts.net:8096",
- "apiKey": "nowaybuddy",
- "target": "nathan",
- "hostPublic": "https://jellyfin.enstrayed.com"
- }
- }
-}
-```
-
-Komodo Files
-
-
-```toml
-[[build]]
-name = "enstrayedapi"
-[build.config]
-builder = "local"
-repo = "Enstrayed/enstrayedapi"
-webhook_secret = "nowaybuddy"
-```
-```toml
-[[deployment]]
-name = "enstrayedapi"
-[deployment.config]
-server = "hawthorne"
-image.type = "Build"
-image.params.build = "enstrayedapi"
-network = "caddy"
-restart = "unless-stopped"
-extra_args = ["--network=postgres"]
-environment = """
-DATABASE_URL=postgres://nowaybuddy:nowaybuddy@postgres:5432/api
-"""
-```
-
-
This page was last updated 2025-12-12.
- - +This page was last updated 2025-12-15.
Returns JSON with the username of the token owner as well as what scopes the token has access to.
- -Redirects the user to ECLS to login. The state parameter can be used to specify how the login flow will behave. The accepted "states" are:
redirect - Redirects the user to a page after logging in. This paramter requires the destination paramter to also be set with the URL the user will be redirected to.display - Displays the generated token to the user after login. Currently, this still writes the new token to the APIToken cookie, though this is planned to change.close - This will close the page after logging in. This requires the page to be opened with JavaScript otherwise it will not automatically close.Invalidates the token used to access the endpoint.
- - - -