By creating this pull request, I grant the project maintainers an unlimited,
perpetual license to use, modify, and redistribute these contributions under any terms they
choose, including both the AGPLv3 and the Fossorial Commercial license terms. I
represent that I have the right to grant this license for all contributed content.
Description
How to test?
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
## 📋 Pull Request Information
**Original PR:** https://github.com/fosrl/pangolin/pull/159
**Author:** [@miloschwartz](https://github.com/miloschwartz)
**Created:** 2/5/2025
**Status:** ✅ Merged
**Merged:** 2/5/2025
**Merged by:** [@miloschwartz](https://github.com/miloschwartz)
**Base:** `main` ← **Head:** `dev`
---
### 📝 Commits (10+)
- [`a039168`](https://github.com/fosrl/pangolin/commit/a03916821728b72de88e332fdff4b6343049485c) add ability to transfer a resource to another site
- [`81571a8`](https://github.com/fosrl/pangolin/commit/81571a8fb72d0af371270ba7cca1ba5c7b8cd73b) german-translation
- [`8b5cac4`](https://github.com/fosrl/pangolin/commit/8b5cac40e0e89f943a87c92574d9dadc7d99bb73) Merge pull request #120 from synologyy/main
- [`8b43c6f`](https://github.com/fosrl/pangolin/commit/8b43c6f9c58113700cf9284fe89bfc2cdb1fc899) Update pl.md
- [`3257c39`](https://github.com/fosrl/pangolin/commit/3257c39fca346fffa8195bcdb495812f0fc08b93) Merge pull request #130 from nkkfs/patch-3
- [`dc9b1f1`](https://github.com/fosrl/pangolin/commit/dc9b1f1efd4c9a0554cddd9b5fbddc040933499a) add project board to readme
- [`7d6dd9e`](https://github.com/fosrl/pangolin/commit/7d6dd9e9fd6b346fc020fefe13fb92d7943ab3ad) Merge branch 'dev' of https://github.com/fosrl/pangolin into dev
- [`962c5fb`](https://github.com/fosrl/pangolin/commit/962c5fb8868f63f4e8573b525bc912f0743708ba) Merge branch 'dev' into transfer-resource-to-new-site
- [`b5420a4`](https://github.com/fosrl/pangolin/commit/b5420a40ab401bf9b67c9e10129ce449a1193c67) Clean up and add target manipulation
- [`53660a1`](https://github.com/fosrl/pangolin/commit/53660a163c85d53e20c3cc0915205d36cb7b00d0) minor changes to verbiage and id value
### 📊 Changes
**38 files changed** (+1364 additions, -306 deletions)
<details>
<summary>View changed files</summary>
📝 `.github/workflows/cicd.yml` (+2 -7)
📝 `README.md` (+5 -1)
📝 `docker-compose.example.yml` (+6 -1)
📝 `install/fs/docker-compose.yml` (+6 -1)
➕ `internationalization/de.md` (+267 -0)
📝 `internationalization/pl.md` (+20 -0)
📝 `package.json` (+1 -1)
📝 `server/db/schema.ts` (+2 -1)
📝 `server/lib/config.ts` (+12 -10)
📝 `server/lib/consts.ts` (+3 -1)
➖ `server/lib/loadAppVersion.ts` (+0 -16)
📝 `server/routers/external.ts` (+7 -0)
📝 `server/routers/gerbil/getConfig.ts` (+2 -14)
📝 `server/routers/newt/targets.ts` (+4 -4)
📝 `server/routers/resource/createResource.ts` (+51 -14)
📝 `server/routers/resource/deleteResource.ts` (+2 -17)
📝 `server/routers/resource/index.ts` (+1 -0)
➕ `server/routers/resource/transferResource.ts` (+192 -0)
📝 `server/routers/resource/updateResource.ts` (+114 -13)
📝 `server/routers/target/createTarget.ts` (+1 -1)
_...and 18 more files_
</details>
### 📄 Description
## Community Contribution License Agreement
By creating this pull request, I grant the project maintainers an unlimited,
perpetual license to use, modify, and redistribute these contributions under any terms they
choose, including both the AGPLv3 and the Fossorial Commercial license terms. I
represent that I have the right to grant this license for all contributed content.
## Description
## How to test?
---
<sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
📋 Pull Request Information
Original PR: https://github.com/fosrl/pangolin/pull/159
Author: @miloschwartz
Created: 2/5/2025
Status: ✅ Merged
Merged: 2/5/2025
Merged by: @miloschwartz
Base:
main← Head:dev📝 Commits (10+)
a039168add ability to transfer a resource to another site81571a8german-translation8b5cac4Merge pull request #120 from synologyy/main8b43c6fUpdate pl.md3257c39Merge pull request #130 from nkkfs/patch-3dc9b1f1add project board to readme7d6dd9eMerge branch 'dev' of https://github.com/fosrl/pangolin into dev962c5fbMerge branch 'dev' into transfer-resource-to-new-siteb5420a4Clean up and add target manipulation53660a1minor changes to verbiage and id value📊 Changes
38 files changed (+1364 additions, -306 deletions)
View changed files
📝
.github/workflows/cicd.yml(+2 -7)📝
README.md(+5 -1)📝
docker-compose.example.yml(+6 -1)📝
install/fs/docker-compose.yml(+6 -1)➕
internationalization/de.md(+267 -0)📝
internationalization/pl.md(+20 -0)📝
package.json(+1 -1)📝
server/db/schema.ts(+2 -1)📝
server/lib/config.ts(+12 -10)📝
server/lib/consts.ts(+3 -1)➖
server/lib/loadAppVersion.ts(+0 -16)📝
server/routers/external.ts(+7 -0)📝
server/routers/gerbil/getConfig.ts(+2 -14)📝
server/routers/newt/targets.ts(+4 -4)📝
server/routers/resource/createResource.ts(+51 -14)📝
server/routers/resource/deleteResource.ts(+2 -17)📝
server/routers/resource/index.ts(+1 -0)➕
server/routers/resource/transferResource.ts(+192 -0)📝
server/routers/resource/updateResource.ts(+114 -13)📝
server/routers/target/createTarget.ts(+1 -1)...and 18 more files
📄 Description
Community Contribution License Agreement
By creating this pull request, I grant the project maintainers an unlimited,
perpetual license to use, modify, and redistribute these contributions under any terms they
choose, including both the AGPLv3 and the Fossorial Commercial license terms. I
represent that I have the right to grant this license for all contributed content.
Description
How to test?
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.