[PR #3004] feat: site & resource labels #12053

Open
opened 2026-05-06 16:38:29 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/fosrl/pangolin/pull/3004
Author: @Fredkiss3
Created: 5/5/2026
Status: 🔄 Open

Base: devHead: feat/labels-on-sites-and-resources


📝 Commits (3)

  • 3253d60 🚧 Add CRUD endpoints and tables for labels
  • 09baf2f 🗃️ add sqlite table for labels
  • 0d04cc3 attach label to item

📊 Changes

10 files changed (+764 additions, -32 deletions)

View changed files

📝 server/auth/actions.ts (+4 -0)
📝 server/db/pg/schema/schema.ts (+69 -16)
📝 server/db/sqlite/schema/schema.ts (+71 -16)
📝 server/private/routers/external.ts (+33 -0)
server/private/routers/labels/attachLabelToItem.ts (+155 -0)
server/private/routers/labels/createOrgLabel.ts (+149 -0)
server/private/routers/labels/index.ts (+17 -0)
server/private/routers/labels/listOrgLabels.ts (+155 -0)
server/private/routers/labels/updateOrgLabel.ts (+101 -0)
server/routers/labels/types.ts (+10 -0)

📄 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.

## 📋 Pull Request Information **Original PR:** https://github.com/fosrl/pangolin/pull/3004 **Author:** [@Fredkiss3](https://github.com/Fredkiss3) **Created:** 5/5/2026 **Status:** 🔄 Open **Base:** `dev` ← **Head:** `feat/labels-on-sites-and-resources` --- ### 📝 Commits (3) - [`3253d60`](https://github.com/fosrl/pangolin/commit/3253d60900dcd86dce4529cf4dc1204f483e088e) 🚧 Add CRUD endpoints and tables for labels - [`09baf2f`](https://github.com/fosrl/pangolin/commit/09baf2f32ee23836f47e1e5b4341c9ec391ef1eb) 🗃️ add sqlite table for labels - [`0d04cc3`](https://github.com/fosrl/pangolin/commit/0d04cc365f0215eef36fe2ed42d45d86c7fa25e6) ✨ attach label to item ### 📊 Changes **10 files changed** (+764 additions, -32 deletions) <details> <summary>View changed files</summary> 📝 `server/auth/actions.ts` (+4 -0) 📝 `server/db/pg/schema/schema.ts` (+69 -16) 📝 `server/db/sqlite/schema/schema.ts` (+71 -16) 📝 `server/private/routers/external.ts` (+33 -0) ➕ `server/private/routers/labels/attachLabelToItem.ts` (+155 -0) ➕ `server/private/routers/labels/createOrgLabel.ts` (+149 -0) ➕ `server/private/routers/labels/index.ts` (+17 -0) ➕ `server/private/routers/labels/listOrgLabels.ts` (+155 -0) ➕ `server/private/routers/labels/updateOrgLabel.ts` (+101 -0) ➕ `server/routers/labels/types.ts` (+10 -0) </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>
GiteaMirror added the pull-request label 2026-05-06 16:38:29 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/pangolin#12053