├── .eslintrc.js ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md └── workflows │ ├── appstore-build-publish.yml │ ├── block-unconventional-commits.yml │ ├── fixup.yml │ ├── lint-eslint.yml │ ├── lint-info-xml.yml │ ├── lint-php-cs.yml │ ├── lint-php.yml │ ├── lint-stylelint.yml │ ├── node.yml │ ├── npm-audit-fix.yml │ ├── pr-feedback.yml │ ├── psalm-matrix.yml │ ├── update-nextcloud-ocp-approve-merge.yml │ └── update-nextcloud-ocp-matrix.yml ├── .gitignore ├── .l10nignore ├── .nextcloudignore ├── .php-cs-fixer.dist.php ├── .tx └── config ├── AUTHORS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── COPYING ├── README.md ├── appinfo ├── info.xml └── routes.php ├── composer.json ├── composer.lock ├── css ├── dashboard.css └── socialsharing.css ├── img ├── add_user.svg ├── app-dark.svg ├── app.svg ├── arobase.svg ├── bell.svg ├── retweet.svg ├── screenshot1.jpg └── starred.svg ├── krankerl.toml ├── l10n ├── .gitkeep ├── ar.js ├── ar.json ├── ast.js ├── ast.json ├── be.js ├── be.json ├── bg.js ├── bg.json ├── br.js ├── br.json ├── ca.js ├── ca.json ├── cs.js ├── cs.json ├── da.js ├── da.json ├── de.js ├── de.json ├── de_DE.js ├── de_DE.json ├── el.js ├── el.json ├── en_GB.js ├── en_GB.json ├── es.js ├── es.json ├── es_AR.js ├── es_AR.json ├── es_EC.js ├── es_EC.json ├── es_GT.js ├── es_GT.json ├── et_EE.js ├── et_EE.json ├── eu.js ├── eu.json ├── fa.js ├── fa.json ├── fi.js ├── fi.json ├── fr.js ├── fr.json ├── ga.js ├── ga.json ├── gl.js ├── gl.json ├── he.js ├── he.json ├── hr.js ├── hr.json ├── hu.js ├── hu.json ├── id.js ├── id.json ├── is.js ├── is.json ├── it.js ├── it.json ├── ja.js ├── ja.json ├── kab.js ├── kab.json ├── ko.js ├── ko.json ├── lo.js ├── lo.json ├── lt_LT.js ├── lt_LT.json ├── lv.js ├── lv.json ├── mk.js ├── mk.json ├── nb.js ├── nb.json ├── nl.js ├── nl.json ├── nn_NO.js ├── nn_NO.json ├── oc.js ├── oc.json ├── pl.js ├── pl.json ├── pt_BR.js ├── pt_BR.json ├── pt_PT.js ├── pt_PT.json ├── ro.js ├── ro.json ├── ru.js ├── ru.json ├── sc.js ├── sc.json ├── si.js ├── si.json ├── sk.js ├── sk.json ├── sl.js ├── sl.json ├── sr.js ├── sr.json ├── sv.js ├── sv.json ├── sw.js ├── sw.json ├── th.js ├── th.json ├── tr.js ├── tr.json ├── ug.js ├── ug.json ├── uk.js ├── uk.json ├── uz.js ├── uz.json ├── vi.js ├── vi.json ├── zh_CN.js ├── zh_CN.json ├── zh_HK.js ├── zh_HK.json ├── zh_TW.js └── zh_TW.json ├── lib ├── AppInfo │ └── Application.php ├── Controller │ ├── ConfigController.php │ └── MastodonAPIController.php ├── Dashboard │ ├── MastodonHomeWidget.php │ └── MastodonWidget.php ├── Listener │ └── LoadAdditionalScriptsListener.php ├── Migration │ └── Version030001Date20241018141359.php ├── Reference │ └── MastodonReferenceProvider.php ├── Search │ ├── SearchAccountsProvider.php │ ├── SearchHashtagsProvider.php │ └── SearchStatusesProvider.php ├── Service │ ├── MastodonAPIService.php │ └── UtilsService.php └── Settings │ ├── Admin.php │ ├── AdminSection.php │ ├── Personal.php │ └── PersonalSection.php ├── makefile ├── package.json ├── psalm.xml ├── src ├── adminSettings.js ├── bootstrap.js ├── components │ ├── AdminSettings.vue │ ├── PersonalSettings.vue │ └── icons │ │ └── MastodonIcon.vue ├── dashboard.js ├── dashboardHome.js ├── personalSettings.js ├── popupSuccess.js ├── socialsharing.js ├── utils.js └── views │ ├── Dashboard.vue │ └── DashboardHome.vue ├── stylelint.config.js ├── templates ├── adminSettings.php ├── personalSettings.php └── popupSuccess.php ├── tests ├── psalm-baseline.xml └── stubs │ ├── oc_hooks_emitter.php │ └── oca_files_event.php ├── vendor-bin ├── cs-fixer │ ├── composer.json │ └── composer.lock ├── openapi-extractor │ ├── composer.json │ └── composer.lock ├── phpunit │ ├── composer.json │ └── composer.lock ├── psalm │ ├── composer.json │ └── composer.lock └── rector │ ├── composer.json │ └── composer.lock └── webpack.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/workflows/appstore-build-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/workflows/appstore-build-publish.yml -------------------------------------------------------------------------------- /.github/workflows/block-unconventional-commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/workflows/block-unconventional-commits.yml -------------------------------------------------------------------------------- /.github/workflows/fixup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/workflows/fixup.yml -------------------------------------------------------------------------------- /.github/workflows/lint-eslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/workflows/lint-eslint.yml -------------------------------------------------------------------------------- /.github/workflows/lint-info-xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/workflows/lint-info-xml.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php-cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/workflows/lint-php-cs.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/workflows/lint-php.yml -------------------------------------------------------------------------------- /.github/workflows/lint-stylelint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/workflows/lint-stylelint.yml -------------------------------------------------------------------------------- /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.github/workflows/npm-audit-fix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/workflows/npm-audit-fix.yml -------------------------------------------------------------------------------- /.github/workflows/pr-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/workflows/pr-feedback.yml -------------------------------------------------------------------------------- /.github/workflows/psalm-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/workflows/psalm-matrix.yml -------------------------------------------------------------------------------- /.github/workflows/update-nextcloud-ocp-approve-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/workflows/update-nextcloud-ocp-approve-merge.yml -------------------------------------------------------------------------------- /.github/workflows/update-nextcloud-ocp-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.github/workflows/update-nextcloud-ocp-matrix.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.gitignore -------------------------------------------------------------------------------- /.l10nignore: -------------------------------------------------------------------------------- 1 | # compiled vue templates 2 | js/ 3 | -------------------------------------------------------------------------------- /.nextcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.nextcloudignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/README.md -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/appinfo/info.xml -------------------------------------------------------------------------------- /appinfo/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/appinfo/routes.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/composer.lock -------------------------------------------------------------------------------- /css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/css/dashboard.css -------------------------------------------------------------------------------- /css/socialsharing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/css/socialsharing.css -------------------------------------------------------------------------------- /img/add_user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/img/add_user.svg -------------------------------------------------------------------------------- /img/app-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/img/app-dark.svg -------------------------------------------------------------------------------- /img/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/img/app.svg -------------------------------------------------------------------------------- /img/arobase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/img/arobase.svg -------------------------------------------------------------------------------- /img/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/img/bell.svg -------------------------------------------------------------------------------- /img/retweet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/img/retweet.svg -------------------------------------------------------------------------------- /img/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/img/screenshot1.jpg -------------------------------------------------------------------------------- /img/starred.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/img/starred.svg -------------------------------------------------------------------------------- /krankerl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/krankerl.toml -------------------------------------------------------------------------------- /l10n/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /l10n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ar.js -------------------------------------------------------------------------------- /l10n/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ar.json -------------------------------------------------------------------------------- /l10n/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ast.js -------------------------------------------------------------------------------- /l10n/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ast.json -------------------------------------------------------------------------------- /l10n/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/be.js -------------------------------------------------------------------------------- /l10n/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/be.json -------------------------------------------------------------------------------- /l10n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/bg.js -------------------------------------------------------------------------------- /l10n/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/bg.json -------------------------------------------------------------------------------- /l10n/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/br.js -------------------------------------------------------------------------------- /l10n/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/br.json -------------------------------------------------------------------------------- /l10n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ca.js -------------------------------------------------------------------------------- /l10n/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ca.json -------------------------------------------------------------------------------- /l10n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/cs.js -------------------------------------------------------------------------------- /l10n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/cs.json -------------------------------------------------------------------------------- /l10n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/da.js -------------------------------------------------------------------------------- /l10n/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/da.json -------------------------------------------------------------------------------- /l10n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/de.js -------------------------------------------------------------------------------- /l10n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/de.json -------------------------------------------------------------------------------- /l10n/de_DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/de_DE.js -------------------------------------------------------------------------------- /l10n/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/de_DE.json -------------------------------------------------------------------------------- /l10n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/el.js -------------------------------------------------------------------------------- /l10n/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/el.json -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/en_GB.js -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/en_GB.json -------------------------------------------------------------------------------- /l10n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/es.js -------------------------------------------------------------------------------- /l10n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/es.json -------------------------------------------------------------------------------- /l10n/es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/es_AR.js -------------------------------------------------------------------------------- /l10n/es_AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/es_AR.json -------------------------------------------------------------------------------- /l10n/es_EC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/es_EC.js -------------------------------------------------------------------------------- /l10n/es_EC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/es_EC.json -------------------------------------------------------------------------------- /l10n/es_GT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/es_GT.js -------------------------------------------------------------------------------- /l10n/es_GT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/es_GT.json -------------------------------------------------------------------------------- /l10n/et_EE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/et_EE.js -------------------------------------------------------------------------------- /l10n/et_EE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/et_EE.json -------------------------------------------------------------------------------- /l10n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/eu.js -------------------------------------------------------------------------------- /l10n/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/eu.json -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/fa.js -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/fa.json -------------------------------------------------------------------------------- /l10n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/fi.js -------------------------------------------------------------------------------- /l10n/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/fi.json -------------------------------------------------------------------------------- /l10n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/fr.js -------------------------------------------------------------------------------- /l10n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/fr.json -------------------------------------------------------------------------------- /l10n/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ga.js -------------------------------------------------------------------------------- /l10n/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ga.json -------------------------------------------------------------------------------- /l10n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/gl.js -------------------------------------------------------------------------------- /l10n/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/gl.json -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/he.js -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/he.json -------------------------------------------------------------------------------- /l10n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/hr.js -------------------------------------------------------------------------------- /l10n/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/hr.json -------------------------------------------------------------------------------- /l10n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/hu.js -------------------------------------------------------------------------------- /l10n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/hu.json -------------------------------------------------------------------------------- /l10n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/id.js -------------------------------------------------------------------------------- /l10n/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/id.json -------------------------------------------------------------------------------- /l10n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/is.js -------------------------------------------------------------------------------- /l10n/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/is.json -------------------------------------------------------------------------------- /l10n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/it.js -------------------------------------------------------------------------------- /l10n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/it.json -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ja.js -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ja.json -------------------------------------------------------------------------------- /l10n/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/kab.js -------------------------------------------------------------------------------- /l10n/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/kab.json -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ko.js -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ko.json -------------------------------------------------------------------------------- /l10n/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/lo.js -------------------------------------------------------------------------------- /l10n/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/lo.json -------------------------------------------------------------------------------- /l10n/lt_LT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/lt_LT.js -------------------------------------------------------------------------------- /l10n/lt_LT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/lt_LT.json -------------------------------------------------------------------------------- /l10n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/lv.js -------------------------------------------------------------------------------- /l10n/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/lv.json -------------------------------------------------------------------------------- /l10n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/mk.js -------------------------------------------------------------------------------- /l10n/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/mk.json -------------------------------------------------------------------------------- /l10n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/nb.js -------------------------------------------------------------------------------- /l10n/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/nb.json -------------------------------------------------------------------------------- /l10n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/nl.js -------------------------------------------------------------------------------- /l10n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/nl.json -------------------------------------------------------------------------------- /l10n/nn_NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/nn_NO.js -------------------------------------------------------------------------------- /l10n/nn_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/nn_NO.json -------------------------------------------------------------------------------- /l10n/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/oc.js -------------------------------------------------------------------------------- /l10n/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/oc.json -------------------------------------------------------------------------------- /l10n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/pl.js -------------------------------------------------------------------------------- /l10n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/pl.json -------------------------------------------------------------------------------- /l10n/pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/pt_BR.js -------------------------------------------------------------------------------- /l10n/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/pt_BR.json -------------------------------------------------------------------------------- /l10n/pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/pt_PT.js -------------------------------------------------------------------------------- /l10n/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/pt_PT.json -------------------------------------------------------------------------------- /l10n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ro.js -------------------------------------------------------------------------------- /l10n/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ro.json -------------------------------------------------------------------------------- /l10n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ru.js -------------------------------------------------------------------------------- /l10n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ru.json -------------------------------------------------------------------------------- /l10n/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/sc.js -------------------------------------------------------------------------------- /l10n/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/sc.json -------------------------------------------------------------------------------- /l10n/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/si.js -------------------------------------------------------------------------------- /l10n/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/si.json -------------------------------------------------------------------------------- /l10n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/sk.js -------------------------------------------------------------------------------- /l10n/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/sk.json -------------------------------------------------------------------------------- /l10n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/sl.js -------------------------------------------------------------------------------- /l10n/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/sl.json -------------------------------------------------------------------------------- /l10n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/sr.js -------------------------------------------------------------------------------- /l10n/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/sr.json -------------------------------------------------------------------------------- /l10n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/sv.js -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/sv.json -------------------------------------------------------------------------------- /l10n/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/sw.js -------------------------------------------------------------------------------- /l10n/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/sw.json -------------------------------------------------------------------------------- /l10n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/th.js -------------------------------------------------------------------------------- /l10n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/th.json -------------------------------------------------------------------------------- /l10n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/tr.js -------------------------------------------------------------------------------- /l10n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/tr.json -------------------------------------------------------------------------------- /l10n/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ug.js -------------------------------------------------------------------------------- /l10n/ug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/ug.json -------------------------------------------------------------------------------- /l10n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/uk.js -------------------------------------------------------------------------------- /l10n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/uk.json -------------------------------------------------------------------------------- /l10n/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/uz.js -------------------------------------------------------------------------------- /l10n/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/uz.json -------------------------------------------------------------------------------- /l10n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/vi.js -------------------------------------------------------------------------------- /l10n/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/vi.json -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/zh_CN.js -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/zh_CN.json -------------------------------------------------------------------------------- /l10n/zh_HK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/zh_HK.js -------------------------------------------------------------------------------- /l10n/zh_HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/zh_HK.json -------------------------------------------------------------------------------- /l10n/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/zh_TW.js -------------------------------------------------------------------------------- /l10n/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/l10n/zh_TW.json -------------------------------------------------------------------------------- /lib/AppInfo/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/AppInfo/Application.php -------------------------------------------------------------------------------- /lib/Controller/ConfigController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Controller/ConfigController.php -------------------------------------------------------------------------------- /lib/Controller/MastodonAPIController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Controller/MastodonAPIController.php -------------------------------------------------------------------------------- /lib/Dashboard/MastodonHomeWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Dashboard/MastodonHomeWidget.php -------------------------------------------------------------------------------- /lib/Dashboard/MastodonWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Dashboard/MastodonWidget.php -------------------------------------------------------------------------------- /lib/Listener/LoadAdditionalScriptsListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Listener/LoadAdditionalScriptsListener.php -------------------------------------------------------------------------------- /lib/Migration/Version030001Date20241018141359.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Migration/Version030001Date20241018141359.php -------------------------------------------------------------------------------- /lib/Reference/MastodonReferenceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Reference/MastodonReferenceProvider.php -------------------------------------------------------------------------------- /lib/Search/SearchAccountsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Search/SearchAccountsProvider.php -------------------------------------------------------------------------------- /lib/Search/SearchHashtagsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Search/SearchHashtagsProvider.php -------------------------------------------------------------------------------- /lib/Search/SearchStatusesProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Search/SearchStatusesProvider.php -------------------------------------------------------------------------------- /lib/Service/MastodonAPIService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Service/MastodonAPIService.php -------------------------------------------------------------------------------- /lib/Service/UtilsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Service/UtilsService.php -------------------------------------------------------------------------------- /lib/Settings/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Settings/Admin.php -------------------------------------------------------------------------------- /lib/Settings/AdminSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Settings/AdminSection.php -------------------------------------------------------------------------------- /lib/Settings/Personal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Settings/Personal.php -------------------------------------------------------------------------------- /lib/Settings/PersonalSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/lib/Settings/PersonalSection.php -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/makefile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/package.json -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/adminSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/src/adminSettings.js -------------------------------------------------------------------------------- /src/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/src/bootstrap.js -------------------------------------------------------------------------------- /src/components/AdminSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/src/components/AdminSettings.vue -------------------------------------------------------------------------------- /src/components/PersonalSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/src/components/PersonalSettings.vue -------------------------------------------------------------------------------- /src/components/icons/MastodonIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/src/components/icons/MastodonIcon.vue -------------------------------------------------------------------------------- /src/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/src/dashboard.js -------------------------------------------------------------------------------- /src/dashboardHome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/src/dashboardHome.js -------------------------------------------------------------------------------- /src/personalSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/src/personalSettings.js -------------------------------------------------------------------------------- /src/popupSuccess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/src/popupSuccess.js -------------------------------------------------------------------------------- /src/socialsharing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/src/socialsharing.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/src/utils.js -------------------------------------------------------------------------------- /src/views/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/src/views/Dashboard.vue -------------------------------------------------------------------------------- /src/views/DashboardHome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/src/views/DashboardHome.vue -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/stylelint.config.js -------------------------------------------------------------------------------- /templates/adminSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/templates/adminSettings.php -------------------------------------------------------------------------------- /templates/personalSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/templates/personalSettings.php -------------------------------------------------------------------------------- /templates/popupSuccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/templates/popupSuccess.php -------------------------------------------------------------------------------- /tests/psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/tests/psalm-baseline.xml -------------------------------------------------------------------------------- /tests/stubs/oc_hooks_emitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/tests/stubs/oc_hooks_emitter.php -------------------------------------------------------------------------------- /tests/stubs/oca_files_event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/tests/stubs/oca_files_event.php -------------------------------------------------------------------------------- /vendor-bin/cs-fixer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/vendor-bin/cs-fixer/composer.json -------------------------------------------------------------------------------- /vendor-bin/cs-fixer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/vendor-bin/cs-fixer/composer.lock -------------------------------------------------------------------------------- /vendor-bin/openapi-extractor/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/vendor-bin/openapi-extractor/composer.json -------------------------------------------------------------------------------- /vendor-bin/openapi-extractor/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/vendor-bin/openapi-extractor/composer.lock -------------------------------------------------------------------------------- /vendor-bin/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/vendor-bin/phpunit/composer.json -------------------------------------------------------------------------------- /vendor-bin/phpunit/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/vendor-bin/phpunit/composer.lock -------------------------------------------------------------------------------- /vendor-bin/psalm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/vendor-bin/psalm/composer.json -------------------------------------------------------------------------------- /vendor-bin/psalm/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/vendor-bin/psalm/composer.lock -------------------------------------------------------------------------------- /vendor-bin/rector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/vendor-bin/rector/composer.json -------------------------------------------------------------------------------- /vendor-bin/rector/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/vendor-bin/rector/composer.lock -------------------------------------------------------------------------------- /webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/integration_mastodon/HEAD/webpack.js --------------------------------------------------------------------------------