Allow changing site on private resources #468

Closed
opened 2026-04-05 17:11:33 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @oschwartz10612 on 12/18/2025

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

Allow changing site on private resources

Moved API endpoints:


// Site Resource endpoints
authenticated.put(
    "/org/:orgId/site-resource",
);

authenticated.get(
    "/site-resource/:siteResourceId",
);

authenticated.post(
    "/site-resource/:siteResourceId",
);

authenticated.delete(
    "/site-resource/:siteResourceId",

Also add missing tcp and udp port config to blueprints

*Originally created by @oschwartz10612 on 12/18/2025* ## 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 Allow changing site on private resources Moved API endpoints: ``` // Site Resource endpoints authenticated.put( "/org/:orgId/site-resource", ); authenticated.get( "/site-resource/:siteResourceId", ); authenticated.post( "/site-resource/:siteResourceId", ); authenticated.delete( "/site-resource/:siteResourceId", ``` Also add missing tcp and udp port config to blueprints
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/pangolin#468