Skip to content

Commit

Permalink
org rename
Browse files Browse the repository at this point in the history
  • Loading branch information
aine-etke committed Aug 8, 2024
1 parent 55eaf1b commit f8628e0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This is a simple script that will erase users from a Synapse server based on spe

It was developed for the [etke.cc demo server](https://etke.cc/demo/) for the purpose of cleaning up the user database.

Another purpose of this repo is to be a test stand for migrating our [gitlab repos](https://gitlab.com/etke.cc) to [github](https://github.com/etke-cc)
Another purpose of this repo is to be a test stand for migrating our [gitlab repos](https://gitlab.com/etke.cc) to [github](https://github.com/etkecc)

Don't expect this to be a full-featured tool, it's just a simple script that does one thing.

Expand All @@ -31,9 +31,9 @@ Check `.env.example` for an example configuration.

```bash
# if you want to run it with docker, do this
$ docker run --rm --env-file .env ghcr.io/etke-cc/synapse-user-autoerase
$ docker run --rm --env-file .env ghcr.io/etkecc/synapse-user-autoerase
# if you have binary, run it like this
$ suae
$ synapse-user-auto-erase
# if you want to run from source
$ just run
```
4 changes: 2 additions & 2 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"time"

"github.com/etke-cc/synapse-user-autoerase/internal/config"
"github.com/etkecc/synapse-user-autoerase/internal/config"
)

// Account is a struct that holds the information about a user account,
Expand Down Expand Up @@ -38,7 +38,7 @@ type DeletedMediaResponse struct {
}

// UserAgent is the user agent that is used for the HTTP requests
const UserAgent = "Synapse User Auto Erase (library; +https://github.com/etke-cc/synapse-user-autoerase)"
const UserAgent = "Synapse User Auto Erase (library; +https://github.com/etkecc/synapse-user-autoerase)"

// omitPrefixes is a list of prefixes that should be omitted/ignored from the list of users
// this list contains most of the common prefixes that are used by bots and bridges.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/etke-cc/synapse-user-autoerase
module github.com/etkecc/synapse-user-autoerase

go 1.22.5

Expand Down

0 comments on commit f8628e0

Please sign in to comment.