├── .build.yml ├── .containerignore ├── .env.dist ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── accounts.go ├── app.go ├── assets ├── css │ ├── about.css │ ├── accounts.css │ ├── article.css │ ├── content.css │ ├── error.css │ ├── footer.css │ ├── grid.css │ ├── header.css │ ├── inline.css │ ├── listing.css │ ├── login.css │ ├── main.css │ ├── moderate.css │ ├── moderation.css │ ├── reset.css │ ├── s.css │ ├── simple.css │ ├── threaded.css │ ├── user-message.css │ └── user.css ├── favicon.ico ├── icons.svg ├── js │ ├── base.js │ └── main.js └── robots.txt ├── bin └── .git-keep ├── cmd └── brutalinks │ └── main.go ├── content.go ├── content_test.go ├── converter.go ├── cursor.go ├── doc ├── INSTALL.md ├── c2s.md └── todo.md ├── fedbox.go ├── fedbox_test.go ├── federated.go ├── filters.go ├── follows.go ├── frontend.go ├── go.mod ├── handlers.go ├── hashes.go ├── hashes_test.go ├── hotscore.go ├── images ├── Makefile ├── bootstrap │ ├── .dockerignore │ ├── Dockerfile │ ├── bootstrap.sh │ ├── clientadd.sh │ └── useradd.sh ├── build.sh ├── gen-certs.sh └── image.sh ├── internal ├── assets │ ├── assets_dev.go │ ├── assets_prod.go │ └── cmd │ │ └── minify.go └── config │ ├── config.go │ └── env.go ├── items.go ├── loader.go ├── middlewares.go ├── models.go ├── moderation.go ├── repository.go ├── repository_cache.go ├── repository_cache_test.go ├── routes.go ├── sessions.go ├── tags.go ├── templates ├── 404.html ├── about.html ├── content.html ├── error.html ├── layout.html ├── listing.html ├── login.html ├── moderate.html ├── moderation.html ├── new.html ├── partials │ ├── account.html │ ├── account │ │ ├── data.html │ │ ├── meta.html │ │ └── score.html │ ├── admin │ │ └── menu.html │ ├── content │ │ └── edit.html │ ├── flash.html │ ├── follow.html │ ├── follow │ │ ├── data.html │ │ ├── meta.html │ │ └── score.html │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── instance │ │ ├── follow-instance.html │ │ └── sysop.html │ ├── item.html │ ├── item │ │ ├── data.html │ │ ├── domain.html │ │ ├── meta.html │ │ ├── recipients.html │ │ ├── score.html │ │ ├── text.html │ │ └── title.html │ ├── list-item.html │ ├── login │ │ ├── local-login.html │ │ └── remote-login.html │ ├── moderation.html │ ├── moderation │ │ ├── data.html │ │ ├── meta.html │ │ └── score.html │ ├── register │ │ └── new-account.html │ └── user │ │ ├── info.html │ │ └── invite.html ├── register.html ├── user-message.html └── user.html ├── tests ├── Makefile ├── README.md ├── kill-pods.sh ├── mocks │ ├── Caddyfile │ ├── brutalinks │ │ └── env │ └── fedbox │ │ ├── env │ │ └── fs │ │ └── test │ │ ├── fedbox │ │ ├── __meta_data │ │ ├── __raw │ │ ├── activities │ │ │ ├── 04fb1d85-1ba8-4485-b5ba-3350c0a3b348 │ │ │ │ └── __raw │ │ │ ├── 1ffe04a9-ffc4-4518-9949-2d4f4c1519c9 │ │ │ │ └── __raw │ │ │ ├── 427d876f-5edd-4a87-9927-f06640424590 │ │ │ │ └── __raw │ │ │ ├── 5322fc4a-56dd-4a1b-902e-12aa1182a1b4 │ │ │ │ └── __raw │ │ │ ├── 53ad3db1-1826-4169-8c03-49c6366a2cae │ │ │ │ └── __raw │ │ │ ├── 8aec0ec3-bd93-4020-ab81-a6957674d10d │ │ │ │ └── __raw │ │ │ ├── __raw │ │ │ ├── a4131607-7cd6-4b78-a893-b978d265ac7a │ │ │ │ └── __raw │ │ │ ├── b5bdf696-a9dd-4f8e-b913-9692bc10a471 │ │ │ │ └── __raw │ │ │ ├── bb56def4-ddaf-4de1-8df3-a8bab43bbd36 │ │ │ │ └── __raw │ │ │ ├── c315c40c-e5c4-4410-ad85-da6ac862bf6b │ │ │ │ └── __raw │ │ │ └── d2b41694-2207-4e0b-acf8-6cb3bef219e9 │ │ │ │ └── __raw │ │ ├── actors │ │ │ ├── 03bdf89a-9c59-481c-865c-be0316d810e7 │ │ │ │ ├── __meta_data │ │ │ │ ├── __raw │ │ │ │ ├── liked │ │ │ │ │ ├── 0a99b75d-05a0-439e-9c09-d04a33b78de8 │ │ │ │ │ ├── 2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70 │ │ │ │ │ ├── 977897cf-ba11-414c-ac4d-de1cf3c6dfe5 │ │ │ │ │ ├── __raw │ │ │ │ │ └── a0f5c056-0671-4e87-846b-56577658c79f │ │ │ │ └── outbox │ │ │ │ │ ├── 04fb1d85-1ba8-4485-b5ba-3350c0a3b348 │ │ │ │ │ ├── 1ffe04a9-ffc4-4518-9949-2d4f4c1519c9 │ │ │ │ │ ├── 2a90a2d5-8ece-4e1d-a86a-72d6b986af9e │ │ │ │ │ └── __raw │ │ │ │ │ ├── 5322fc4a-56dd-4a1b-902e-12aa1182a1b4 │ │ │ │ │ ├── 53ad3db1-1826-4169-8c03-49c6366a2cae │ │ │ │ │ ├── 8aec0ec3-bd93-4020-ab81-a6957674d10d │ │ │ │ │ ├── __raw │ │ │ │ │ ├── b5bdf696-a9dd-4f8e-b913-9692bc10a471 │ │ │ │ │ ├── bb56def4-ddaf-4de1-8df3-a8bab43bbd36 │ │ │ │ │ ├── c315c40c-e5c4-4410-ad85-da6ac862bf6b │ │ │ │ │ ├── d2b41694-2207-4e0b-acf8-6cb3bef219e9 │ │ │ │ │ └── fd5a9423-5565-4d8f-aab0-432daaf834c8 │ │ │ │ │ └── __raw │ │ │ ├── __raw │ │ │ └── c4cdfe54-9919-4dd4-8a71-63beafe12b8c │ │ │ │ ├── __meta_data │ │ │ │ ├── __raw │ │ │ │ ├── inbox │ │ │ │ ├── 04fb1d85-1ba8-4485-b5ba-3350c0a3b348 │ │ │ │ ├── 1ffe04a9-ffc4-4518-9949-2d4f4c1519c9 │ │ │ │ ├── 2a90a2d5-8ece-4e1d-a86a-72d6b986af9e │ │ │ │ ├── 5322fc4a-56dd-4a1b-902e-12aa1182a1b4 │ │ │ │ ├── 53ad3db1-1826-4169-8c03-49c6366a2cae │ │ │ │ ├── 8aec0ec3-bd93-4020-ab81-a6957674d10d │ │ │ │ ├── __raw │ │ │ │ ├── b5bdf696-a9dd-4f8e-b913-9692bc10a471 │ │ │ │ ├── bb56def4-ddaf-4de1-8df3-a8bab43bbd36 │ │ │ │ ├── c315c40c-e5c4-4410-ad85-da6ac862bf6b │ │ │ │ ├── d2b41694-2207-4e0b-acf8-6cb3bef219e9 │ │ │ │ └── fd5a9423-5565-4d8f-aab0-432daaf834c8 │ │ │ │ └── outbox │ │ │ │ ├── 427d876f-5edd-4a87-9927-f06640424590 │ │ │ │ └── __raw │ │ ├── inbox │ │ │ ├── 04fb1d85-1ba8-4485-b5ba-3350c0a3b348 │ │ │ ├── 1ffe04a9-ffc4-4518-9949-2d4f4c1519c9 │ │ │ ├── 2a90a2d5-8ece-4e1d-a86a-72d6b986af9e │ │ │ ├── 427d876f-5edd-4a87-9927-f06640424590 │ │ │ ├── 5322fc4a-56dd-4a1b-902e-12aa1182a1b4 │ │ │ ├── 53ad3db1-1826-4169-8c03-49c6366a2cae │ │ │ ├── 8aec0ec3-bd93-4020-ab81-a6957674d10d │ │ │ ├── __raw │ │ │ ├── a4131607-7cd6-4b78-a893-b978d265ac7a │ │ │ ├── b5bdf696-a9dd-4f8e-b913-9692bc10a471 │ │ │ ├── bb56def4-ddaf-4de1-8df3-a8bab43bbd36 │ │ │ ├── c315c40c-e5c4-4410-ad85-da6ac862bf6b │ │ │ ├── d2b41694-2207-4e0b-acf8-6cb3bef219e9 │ │ │ └── fd5a9423-5565-4d8f-aab0-432daaf834c8 │ │ ├── objects │ │ │ ├── 0a99b75d-05a0-439e-9c09-d04a33b78de8 │ │ │ │ ├── __raw │ │ │ │ └── likes │ │ │ │ │ ├── __raw │ │ │ │ │ └── bb56def4-ddaf-4de1-8df3-a8bab43bbd36 │ │ │ ├── 1b1e6889-5081-489c-8a67-d103f504b90b │ │ │ │ └── __raw │ │ │ ├── 2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70 │ │ │ │ ├── __raw │ │ │ │ └── likes │ │ │ │ │ ├── 53ad3db1-1826-4169-8c03-49c6366a2cae │ │ │ │ │ └── __raw │ │ │ ├── 7c4202a4-78cf-44fa-be2a-0544da4968ea │ │ │ │ └── __raw │ │ │ ├── 8ce864d2-deae-4b79-9537-2ed283ee4148 │ │ │ │ └── __raw │ │ │ ├── 977897cf-ba11-414c-ac4d-de1cf3c6dfe5 │ │ │ │ ├── __raw │ │ │ │ ├── likes │ │ │ │ │ ├── 8aec0ec3-bd93-4020-ab81-a6957674d10d │ │ │ │ │ └── __raw │ │ │ │ └── replies │ │ │ │ │ ├── 0a99b75d-05a0-439e-9c09-d04a33b78de8 │ │ │ │ │ ├── 2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70 │ │ │ │ │ ├── __raw │ │ │ │ │ └── a0f5c056-0671-4e87-846b-56577658c79f │ │ │ ├── 9f252ada-b25c-418e-a8d4-1efa21cb0361 │ │ │ │ ├── __raw │ │ │ │ ├── likes │ │ │ │ │ └── __raw │ │ │ │ ├── replies │ │ │ │ │ └── __raw │ │ │ │ └── shares │ │ │ │ │ └── __raw │ │ │ ├── __raw │ │ │ ├── a0f5c056-0671-4e87-846b-56577658c79f │ │ │ │ ├── __raw │ │ │ │ ├── likes │ │ │ │ │ ├── 04fb1d85-1ba8-4485-b5ba-3350c0a3b348 │ │ │ │ │ └── __raw │ │ │ │ └── replies │ │ │ │ │ ├── 0a99b75d-05a0-439e-9c09-d04a33b78de8 │ │ │ │ │ ├── 2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70 │ │ │ │ │ └── __raw │ │ │ ├── a527f654-aeec-4249-92fc-7cff563ffe2c │ │ │ │ └── __raw │ │ │ └── e247130c-e18f-43dd-8655-5c6efbbc46c8 │ │ │ │ ├── __raw │ │ │ │ ├── likes │ │ │ │ └── __raw │ │ │ │ ├── replies │ │ │ │ └── __raw │ │ │ │ └── shares │ │ │ │ └── __raw │ │ └── outbox │ │ │ ├── __raw │ │ │ └── a4131607-7cd6-4b78-a893-b978d265ac7a │ │ └── oauth │ │ ├── .gitignore │ │ └── clients │ │ └── fedbox │ │ └── actors │ │ └── c4cdfe54-9919-4dd4-8a71-63beafe12b8c │ │ └── __raw ├── run-pods.sh ├── script.js └── slam.js ├── view.go ├── votes.go └── webfinger.go /.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/.build.yml -------------------------------------------------------------------------------- /.containerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/.containerignore -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/.env.dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/README.md -------------------------------------------------------------------------------- /accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/accounts.go -------------------------------------------------------------------------------- /app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/app.go -------------------------------------------------------------------------------- /assets/css/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/about.css -------------------------------------------------------------------------------- /assets/css/accounts.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/article.css -------------------------------------------------------------------------------- /assets/css/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/content.css -------------------------------------------------------------------------------- /assets/css/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/error.css -------------------------------------------------------------------------------- /assets/css/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/footer.css -------------------------------------------------------------------------------- /assets/css/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/grid.css -------------------------------------------------------------------------------- /assets/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/header.css -------------------------------------------------------------------------------- /assets/css/inline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/inline.css -------------------------------------------------------------------------------- /assets/css/listing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/listing.css -------------------------------------------------------------------------------- /assets/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/login.css -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/main.css -------------------------------------------------------------------------------- /assets/css/moderate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/moderate.css -------------------------------------------------------------------------------- /assets/css/moderation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/moderation.css -------------------------------------------------------------------------------- /assets/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/reset.css -------------------------------------------------------------------------------- /assets/css/s.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/s.css -------------------------------------------------------------------------------- /assets/css/simple.css: -------------------------------------------------------------------------------- 1 | noscript { 2 | display: inline; 3 | } 4 | -------------------------------------------------------------------------------- /assets/css/threaded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/threaded.css -------------------------------------------------------------------------------- /assets/css/user-message.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/css/user.css -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/icons.svg -------------------------------------------------------------------------------- /assets/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/js/base.js -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/assets/robots.txt -------------------------------------------------------------------------------- /bin/.git-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/brutalinks/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/cmd/brutalinks/main.go -------------------------------------------------------------------------------- /content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/content.go -------------------------------------------------------------------------------- /content_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/content_test.go -------------------------------------------------------------------------------- /converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/converter.go -------------------------------------------------------------------------------- /cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/cursor.go -------------------------------------------------------------------------------- /doc/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/doc/INSTALL.md -------------------------------------------------------------------------------- /doc/c2s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/doc/c2s.md -------------------------------------------------------------------------------- /doc/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/doc/todo.md -------------------------------------------------------------------------------- /fedbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/fedbox.go -------------------------------------------------------------------------------- /fedbox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/fedbox_test.go -------------------------------------------------------------------------------- /federated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/federated.go -------------------------------------------------------------------------------- /filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/filters.go -------------------------------------------------------------------------------- /follows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/follows.go -------------------------------------------------------------------------------- /frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/frontend.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/go.mod -------------------------------------------------------------------------------- /handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/handlers.go -------------------------------------------------------------------------------- /hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/hashes.go -------------------------------------------------------------------------------- /hashes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/hashes_test.go -------------------------------------------------------------------------------- /hotscore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/hotscore.go -------------------------------------------------------------------------------- /images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/images/Makefile -------------------------------------------------------------------------------- /images/bootstrap/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/images/bootstrap/.dockerignore -------------------------------------------------------------------------------- /images/bootstrap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/images/bootstrap/Dockerfile -------------------------------------------------------------------------------- /images/bootstrap/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/images/bootstrap/bootstrap.sh -------------------------------------------------------------------------------- /images/bootstrap/clientadd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/images/bootstrap/clientadd.sh -------------------------------------------------------------------------------- /images/bootstrap/useradd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/images/bootstrap/useradd.sh -------------------------------------------------------------------------------- /images/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/images/build.sh -------------------------------------------------------------------------------- /images/gen-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/images/gen-certs.sh -------------------------------------------------------------------------------- /images/image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/images/image.sh -------------------------------------------------------------------------------- /internal/assets/assets_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/internal/assets/assets_dev.go -------------------------------------------------------------------------------- /internal/assets/assets_prod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/internal/assets/assets_prod.go -------------------------------------------------------------------------------- /internal/assets/cmd/minify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/internal/assets/cmd/minify.go -------------------------------------------------------------------------------- /internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/internal/config/config.go -------------------------------------------------------------------------------- /internal/config/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/internal/config/env.go -------------------------------------------------------------------------------- /items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/items.go -------------------------------------------------------------------------------- /loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/loader.go -------------------------------------------------------------------------------- /middlewares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/middlewares.go -------------------------------------------------------------------------------- /models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/models.go -------------------------------------------------------------------------------- /moderation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/moderation.go -------------------------------------------------------------------------------- /repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/repository.go -------------------------------------------------------------------------------- /repository_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/repository_cache.go -------------------------------------------------------------------------------- /repository_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/repository_cache_test.go -------------------------------------------------------------------------------- /routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/routes.go -------------------------------------------------------------------------------- /sessions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/sessions.go -------------------------------------------------------------------------------- /tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tags.go -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/content.html -------------------------------------------------------------------------------- /templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/error.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/listing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/listing.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/moderate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/moderate.html -------------------------------------------------------------------------------- /templates/moderation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/moderation.html -------------------------------------------------------------------------------- /templates/new.html: -------------------------------------------------------------------------------- 1 | {{template "partials/content/edit" . }} 2 | -------------------------------------------------------------------------------- /templates/partials/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/account.html -------------------------------------------------------------------------------- /templates/partials/account/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/account/data.html -------------------------------------------------------------------------------- /templates/partials/account/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/account/meta.html -------------------------------------------------------------------------------- /templates/partials/account/score.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/account/score.html -------------------------------------------------------------------------------- /templates/partials/admin/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/admin/menu.html -------------------------------------------------------------------------------- /templates/partials/content/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/content/edit.html -------------------------------------------------------------------------------- /templates/partials/flash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/flash.html -------------------------------------------------------------------------------- /templates/partials/follow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/follow.html -------------------------------------------------------------------------------- /templates/partials/follow/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/follow/data.html -------------------------------------------------------------------------------- /templates/partials/follow/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/follow/meta.html -------------------------------------------------------------------------------- /templates/partials/follow/score.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/follow/score.html -------------------------------------------------------------------------------- /templates/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/footer.html -------------------------------------------------------------------------------- /templates/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/head.html -------------------------------------------------------------------------------- /templates/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/header.html -------------------------------------------------------------------------------- /templates/partials/instance/follow-instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/instance/follow-instance.html -------------------------------------------------------------------------------- /templates/partials/instance/sysop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/instance/sysop.html -------------------------------------------------------------------------------- /templates/partials/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/item.html -------------------------------------------------------------------------------- /templates/partials/item/data.html: -------------------------------------------------------------------------------- 1 | {{- template "partials/item/title" . -}} 2 | -------------------------------------------------------------------------------- /templates/partials/item/domain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/item/domain.html -------------------------------------------------------------------------------- /templates/partials/item/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/item/meta.html -------------------------------------------------------------------------------- /templates/partials/item/recipients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/item/recipients.html -------------------------------------------------------------------------------- /templates/partials/item/score.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/item/score.html -------------------------------------------------------------------------------- /templates/partials/item/text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/item/text.html -------------------------------------------------------------------------------- /templates/partials/item/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/item/title.html -------------------------------------------------------------------------------- /templates/partials/list-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/list-item.html -------------------------------------------------------------------------------- /templates/partials/login/local-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/login/local-login.html -------------------------------------------------------------------------------- /templates/partials/login/remote-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/login/remote-login.html -------------------------------------------------------------------------------- /templates/partials/moderation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/moderation.html -------------------------------------------------------------------------------- /templates/partials/moderation/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/moderation/data.html -------------------------------------------------------------------------------- /templates/partials/moderation/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/moderation/meta.html -------------------------------------------------------------------------------- /templates/partials/moderation/score.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/moderation/score.html -------------------------------------------------------------------------------- /templates/partials/register/new-account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/register/new-account.html -------------------------------------------------------------------------------- /templates/partials/user/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/user/info.html -------------------------------------------------------------------------------- /templates/partials/user/invite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/partials/user/invite.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- 1 | {{template "partials/register/new-account" . }} 2 | -------------------------------------------------------------------------------- /templates/user-message.html: -------------------------------------------------------------------------------- 1 | {{ template "partials/content/edit" . }} 2 | -------------------------------------------------------------------------------- /templates/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/templates/user.html -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/kill-pods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/kill-pods.sh -------------------------------------------------------------------------------- /tests/mocks/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/Caddyfile -------------------------------------------------------------------------------- /tests/mocks/brutalinks/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/brutalinks/env -------------------------------------------------------------------------------- /tests/mocks/fedbox/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/env -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/__meta_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/__meta_data -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/activities/04fb1d85-1ba8-4485-b5ba-3350c0a3b348/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/activities/04fb1d85-1ba8-4485-b5ba-3350c0a3b348/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/activities/1ffe04a9-ffc4-4518-9949-2d4f4c1519c9/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/activities/1ffe04a9-ffc4-4518-9949-2d4f4c1519c9/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/activities/427d876f-5edd-4a87-9927-f06640424590/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/activities/427d876f-5edd-4a87-9927-f06640424590/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/activities/5322fc4a-56dd-4a1b-902e-12aa1182a1b4/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/activities/5322fc4a-56dd-4a1b-902e-12aa1182a1b4/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/activities/53ad3db1-1826-4169-8c03-49c6366a2cae/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/activities/53ad3db1-1826-4169-8c03-49c6366a2cae/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/activities/8aec0ec3-bd93-4020-ab81-a6957674d10d/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/activities/8aec0ec3-bd93-4020-ab81-a6957674d10d/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/activities/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/activities/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/activities/a4131607-7cd6-4b78-a893-b978d265ac7a/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/activities/a4131607-7cd6-4b78-a893-b978d265ac7a/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/activities/b5bdf696-a9dd-4f8e-b913-9692bc10a471/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/activities/b5bdf696-a9dd-4f8e-b913-9692bc10a471/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/activities/bb56def4-ddaf-4de1-8df3-a8bab43bbd36/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/activities/bb56def4-ddaf-4de1-8df3-a8bab43bbd36/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/activities/c315c40c-e5c4-4410-ad85-da6ac862bf6b/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/activities/c315c40c-e5c4-4410-ad85-da6ac862bf6b/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/activities/d2b41694-2207-4e0b-acf8-6cb3bef219e9/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/activities/d2b41694-2207-4e0b-acf8-6cb3bef219e9/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/__meta_data: -------------------------------------------------------------------------------- 1 | {"Pw":"JDJhJDEwJHBhUVRzMTE0TlNPNlNTV0hDMHltLy5hQzUuTC83VmIzbU1Ga05iZUNZMGxjUTFQL1NQcHNH","PrivateKey":null} -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/liked/0a99b75d-05a0-439e-9c09-d04a33b78de8: -------------------------------------------------------------------------------- 1 | ../../../objects/0a99b75d-05a0-439e-9c09-d04a33b78de8 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/liked/2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70: -------------------------------------------------------------------------------- 1 | ../../../objects/2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/liked/977897cf-ba11-414c-ac4d-de1cf3c6dfe5: -------------------------------------------------------------------------------- 1 | ../../../objects/977897cf-ba11-414c-ac4d-de1cf3c6dfe5 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/liked/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/liked/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/liked/a0f5c056-0671-4e87-846b-56577658c79f: -------------------------------------------------------------------------------- 1 | ../../../objects/a0f5c056-0671-4e87-846b-56577658c79f -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/04fb1d85-1ba8-4485-b5ba-3350c0a3b348: -------------------------------------------------------------------------------- 1 | ../../../activities/04fb1d85-1ba8-4485-b5ba-3350c0a3b348 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/1ffe04a9-ffc4-4518-9949-2d4f4c1519c9: -------------------------------------------------------------------------------- 1 | ../../../activities/1ffe04a9-ffc4-4518-9949-2d4f4c1519c9 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/2a90a2d5-8ece-4e1d-a86a-72d6b986af9e/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/2a90a2d5-8ece-4e1d-a86a-72d6b986af9e/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/5322fc4a-56dd-4a1b-902e-12aa1182a1b4: -------------------------------------------------------------------------------- 1 | ../../../activities/5322fc4a-56dd-4a1b-902e-12aa1182a1b4 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/53ad3db1-1826-4169-8c03-49c6366a2cae: -------------------------------------------------------------------------------- 1 | ../../../activities/53ad3db1-1826-4169-8c03-49c6366a2cae -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/8aec0ec3-bd93-4020-ab81-a6957674d10d: -------------------------------------------------------------------------------- 1 | ../../../activities/8aec0ec3-bd93-4020-ab81-a6957674d10d -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/b5bdf696-a9dd-4f8e-b913-9692bc10a471: -------------------------------------------------------------------------------- 1 | ../../../activities/b5bdf696-a9dd-4f8e-b913-9692bc10a471 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/bb56def4-ddaf-4de1-8df3-a8bab43bbd36: -------------------------------------------------------------------------------- 1 | ../../../activities/bb56def4-ddaf-4de1-8df3-a8bab43bbd36 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/c315c40c-e5c4-4410-ad85-da6ac862bf6b: -------------------------------------------------------------------------------- 1 | ../../../activities/c315c40c-e5c4-4410-ad85-da6ac862bf6b -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/d2b41694-2207-4e0b-acf8-6cb3bef219e9: -------------------------------------------------------------------------------- 1 | ../../../activities/d2b41694-2207-4e0b-acf8-6cb3bef219e9 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/fd5a9423-5565-4d8f-aab0-432daaf834c8/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/fd5a9423-5565-4d8f-aab0-432daaf834c8/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/actors/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/__meta_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/__meta_data -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/inbox/04fb1d85-1ba8-4485-b5ba-3350c0a3b348: -------------------------------------------------------------------------------- 1 | ../../../activities/04fb1d85-1ba8-4485-b5ba-3350c0a3b348 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/inbox/1ffe04a9-ffc4-4518-9949-2d4f4c1519c9: -------------------------------------------------------------------------------- 1 | ../../../activities/1ffe04a9-ffc4-4518-9949-2d4f4c1519c9 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/inbox/2a90a2d5-8ece-4e1d-a86a-72d6b986af9e: -------------------------------------------------------------------------------- 1 | ../../03bdf89a-9c59-481c-865c-be0316d810e7/outbox/2a90a2d5-8ece-4e1d-a86a-72d6b986af9e -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/inbox/5322fc4a-56dd-4a1b-902e-12aa1182a1b4: -------------------------------------------------------------------------------- 1 | ../../../activities/5322fc4a-56dd-4a1b-902e-12aa1182a1b4 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/inbox/53ad3db1-1826-4169-8c03-49c6366a2cae: -------------------------------------------------------------------------------- 1 | ../../../activities/53ad3db1-1826-4169-8c03-49c6366a2cae -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/inbox/8aec0ec3-bd93-4020-ab81-a6957674d10d: -------------------------------------------------------------------------------- 1 | ../../../activities/8aec0ec3-bd93-4020-ab81-a6957674d10d -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/inbox/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/inbox/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/inbox/b5bdf696-a9dd-4f8e-b913-9692bc10a471: -------------------------------------------------------------------------------- 1 | ../../../activities/b5bdf696-a9dd-4f8e-b913-9692bc10a471 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/inbox/bb56def4-ddaf-4de1-8df3-a8bab43bbd36: -------------------------------------------------------------------------------- 1 | ../../../activities/bb56def4-ddaf-4de1-8df3-a8bab43bbd36 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/inbox/c315c40c-e5c4-4410-ad85-da6ac862bf6b: -------------------------------------------------------------------------------- 1 | ../../../activities/c315c40c-e5c4-4410-ad85-da6ac862bf6b -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/inbox/d2b41694-2207-4e0b-acf8-6cb3bef219e9: -------------------------------------------------------------------------------- 1 | ../../../activities/d2b41694-2207-4e0b-acf8-6cb3bef219e9 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/inbox/fd5a9423-5565-4d8f-aab0-432daaf834c8: -------------------------------------------------------------------------------- 1 | ../../03bdf89a-9c59-481c-865c-be0316d810e7/outbox/fd5a9423-5565-4d8f-aab0-432daaf834c8 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/outbox/427d876f-5edd-4a87-9927-f06640424590: -------------------------------------------------------------------------------- 1 | ../../../activities/427d876f-5edd-4a87-9927-f06640424590 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/outbox/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/outbox/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/inbox/04fb1d85-1ba8-4485-b5ba-3350c0a3b348: -------------------------------------------------------------------------------- 1 | ../activities/04fb1d85-1ba8-4485-b5ba-3350c0a3b348 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/inbox/1ffe04a9-ffc4-4518-9949-2d4f4c1519c9: -------------------------------------------------------------------------------- 1 | ../activities/1ffe04a9-ffc4-4518-9949-2d4f4c1519c9 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/inbox/2a90a2d5-8ece-4e1d-a86a-72d6b986af9e: -------------------------------------------------------------------------------- 1 | ../actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/2a90a2d5-8ece-4e1d-a86a-72d6b986af9e -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/inbox/427d876f-5edd-4a87-9927-f06640424590: -------------------------------------------------------------------------------- 1 | ../activities/427d876f-5edd-4a87-9927-f06640424590 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/inbox/5322fc4a-56dd-4a1b-902e-12aa1182a1b4: -------------------------------------------------------------------------------- 1 | ../activities/5322fc4a-56dd-4a1b-902e-12aa1182a1b4 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/inbox/53ad3db1-1826-4169-8c03-49c6366a2cae: -------------------------------------------------------------------------------- 1 | ../activities/53ad3db1-1826-4169-8c03-49c6366a2cae -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/inbox/8aec0ec3-bd93-4020-ab81-a6957674d10d: -------------------------------------------------------------------------------- 1 | ../activities/8aec0ec3-bd93-4020-ab81-a6957674d10d -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/inbox/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/inbox/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/inbox/a4131607-7cd6-4b78-a893-b978d265ac7a: -------------------------------------------------------------------------------- 1 | ../activities/a4131607-7cd6-4b78-a893-b978d265ac7a -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/inbox/b5bdf696-a9dd-4f8e-b913-9692bc10a471: -------------------------------------------------------------------------------- 1 | ../activities/b5bdf696-a9dd-4f8e-b913-9692bc10a471 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/inbox/bb56def4-ddaf-4de1-8df3-a8bab43bbd36: -------------------------------------------------------------------------------- 1 | ../activities/bb56def4-ddaf-4de1-8df3-a8bab43bbd36 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/inbox/c315c40c-e5c4-4410-ad85-da6ac862bf6b: -------------------------------------------------------------------------------- 1 | ../activities/c315c40c-e5c4-4410-ad85-da6ac862bf6b -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/inbox/d2b41694-2207-4e0b-acf8-6cb3bef219e9: -------------------------------------------------------------------------------- 1 | ../activities/d2b41694-2207-4e0b-acf8-6cb3bef219e9 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/inbox/fd5a9423-5565-4d8f-aab0-432daaf834c8: -------------------------------------------------------------------------------- 1 | ../actors/03bdf89a-9c59-481c-865c-be0316d810e7/outbox/fd5a9423-5565-4d8f-aab0-432daaf834c8 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/0a99b75d-05a0-439e-9c09-d04a33b78de8/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/0a99b75d-05a0-439e-9c09-d04a33b78de8/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/0a99b75d-05a0-439e-9c09-d04a33b78de8/likes/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/0a99b75d-05a0-439e-9c09-d04a33b78de8/likes/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/0a99b75d-05a0-439e-9c09-d04a33b78de8/likes/bb56def4-ddaf-4de1-8df3-a8bab43bbd36: -------------------------------------------------------------------------------- 1 | ../../../activities/bb56def4-ddaf-4de1-8df3-a8bab43bbd36 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/1b1e6889-5081-489c-8a67-d103f504b90b/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/1b1e6889-5081-489c-8a67-d103f504b90b/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70/likes/53ad3db1-1826-4169-8c03-49c6366a2cae: -------------------------------------------------------------------------------- 1 | ../../../activities/53ad3db1-1826-4169-8c03-49c6366a2cae -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70/likes/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70/likes/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/7c4202a4-78cf-44fa-be2a-0544da4968ea/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/7c4202a4-78cf-44fa-be2a-0544da4968ea/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/8ce864d2-deae-4b79-9537-2ed283ee4148/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/8ce864d2-deae-4b79-9537-2ed283ee4148/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/977897cf-ba11-414c-ac4d-de1cf3c6dfe5/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/977897cf-ba11-414c-ac4d-de1cf3c6dfe5/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/977897cf-ba11-414c-ac4d-de1cf3c6dfe5/likes/8aec0ec3-bd93-4020-ab81-a6957674d10d: -------------------------------------------------------------------------------- 1 | ../../../activities/8aec0ec3-bd93-4020-ab81-a6957674d10d -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/977897cf-ba11-414c-ac4d-de1cf3c6dfe5/likes/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/977897cf-ba11-414c-ac4d-de1cf3c6dfe5/likes/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/977897cf-ba11-414c-ac4d-de1cf3c6dfe5/replies/0a99b75d-05a0-439e-9c09-d04a33b78de8: -------------------------------------------------------------------------------- 1 | ../../0a99b75d-05a0-439e-9c09-d04a33b78de8 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/977897cf-ba11-414c-ac4d-de1cf3c6dfe5/replies/2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70: -------------------------------------------------------------------------------- 1 | ../../2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/977897cf-ba11-414c-ac4d-de1cf3c6dfe5/replies/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/977897cf-ba11-414c-ac4d-de1cf3c6dfe5/replies/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/977897cf-ba11-414c-ac4d-de1cf3c6dfe5/replies/a0f5c056-0671-4e87-846b-56577658c79f: -------------------------------------------------------------------------------- 1 | ../../a0f5c056-0671-4e87-846b-56577658c79f -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/9f252ada-b25c-418e-a8d4-1efa21cb0361/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/9f252ada-b25c-418e-a8d4-1efa21cb0361/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/9f252ada-b25c-418e-a8d4-1efa21cb0361/likes/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/9f252ada-b25c-418e-a8d4-1efa21cb0361/likes/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/9f252ada-b25c-418e-a8d4-1efa21cb0361/replies/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/9f252ada-b25c-418e-a8d4-1efa21cb0361/replies/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/9f252ada-b25c-418e-a8d4-1efa21cb0361/shares/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/9f252ada-b25c-418e-a8d4-1efa21cb0361/shares/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/a0f5c056-0671-4e87-846b-56577658c79f/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/a0f5c056-0671-4e87-846b-56577658c79f/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/a0f5c056-0671-4e87-846b-56577658c79f/likes/04fb1d85-1ba8-4485-b5ba-3350c0a3b348: -------------------------------------------------------------------------------- 1 | ../../../activities/04fb1d85-1ba8-4485-b5ba-3350c0a3b348 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/a0f5c056-0671-4e87-846b-56577658c79f/likes/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/a0f5c056-0671-4e87-846b-56577658c79f/likes/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/a0f5c056-0671-4e87-846b-56577658c79f/replies/0a99b75d-05a0-439e-9c09-d04a33b78de8: -------------------------------------------------------------------------------- 1 | ../../0a99b75d-05a0-439e-9c09-d04a33b78de8 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/a0f5c056-0671-4e87-846b-56577658c79f/replies/2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70: -------------------------------------------------------------------------------- 1 | ../../2a6ffab9-39be-4ae6-ae1b-aa625fd0fb70 -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/a0f5c056-0671-4e87-846b-56577658c79f/replies/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/a0f5c056-0671-4e87-846b-56577658c79f/replies/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/a527f654-aeec-4249-92fc-7cff563ffe2c/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/a527f654-aeec-4249-92fc-7cff563ffe2c/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/e247130c-e18f-43dd-8655-5c6efbbc46c8/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/e247130c-e18f-43dd-8655-5c6efbbc46c8/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/e247130c-e18f-43dd-8655-5c6efbbc46c8/likes/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/e247130c-e18f-43dd-8655-5c6efbbc46c8/likes/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/e247130c-e18f-43dd-8655-5c6efbbc46c8/replies/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/e247130c-e18f-43dd-8655-5c6efbbc46c8/replies/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/objects/e247130c-e18f-43dd-8655-5c6efbbc46c8/shares/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/objects/e247130c-e18f-43dd-8655-5c6efbbc46c8/shares/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/outbox/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/fedbox/outbox/__raw -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/fedbox/outbox/a4131607-7cd6-4b78-a893-b978d265ac7a: -------------------------------------------------------------------------------- 1 | ../activities/a4131607-7cd6-4b78-a893-b978d265ac7a -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/oauth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/oauth/.gitignore -------------------------------------------------------------------------------- /tests/mocks/fedbox/fs/test/oauth/clients/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/__raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/mocks/fedbox/fs/test/oauth/clients/fedbox/actors/c4cdfe54-9919-4dd4-8a71-63beafe12b8c/__raw -------------------------------------------------------------------------------- /tests/run-pods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/run-pods.sh -------------------------------------------------------------------------------- /tests/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/script.js -------------------------------------------------------------------------------- /tests/slam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/tests/slam.js -------------------------------------------------------------------------------- /view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/view.go -------------------------------------------------------------------------------- /votes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/votes.go -------------------------------------------------------------------------------- /webfinger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariusor/brutalinks/HEAD/webfinger.go --------------------------------------------------------------------------------