Explore backend implementation options and decide upon one #135
Labels
No labels
Backlog Status
Needs Review
Backlog Status
Ready
Chore
points
01
points
02
points
03
points
05
points
08
points
13
Priority
High
Priority
Low
Priority
Medium
Sprint Status
Blocked
Sprint Status
Done
Sprint Status
In Progress
Sprint Status
Review
Sprint Status
To Do
Technical Debt
Work Item
Bug
Work Item
Epic
Work Item
Spike
Work Item
Task
Work Item
User Story
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Blocks
#113 Private Issues
forge/forge
Reference
forge/forge#135
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
User Story
As a developer implementing private issues,
I want to reuse existing code as much as possible,
to avoid duplicated structures which can get out of sync.
Acceptance Criteria
[Not working] Writable DB views – while seemingly being supported by SQLite, PostgreSQL, MySQL, MariaDB (in one way or another), XORM doesn’t know about views at all.
@ryanlerch this should have stayed on the Forgejo project, right? I wondered why I couldn’t find it on the board…
Anyway, to me, the most feasible way to implement this is:
PrivateIssue, compatible with/derived fromIssue, along with a new interfaceAnyIssuewhich wraps both types.AnyIssueinterface to check if the current user is allowed to see the issue (private or public).It gets hazier the more higher-level we get, so I’ll leave it at that for now.