As issue.IssueId is already retrieved from NewIssue, We don't need
GetIssueId to get last issue-id.
Using same, last inserted issue-id would be better.
Signed-off-by: Seongmin Lee boltlessengineer@proton.me
GetIssueId method
#2
As issue.IssueId is already retrieved from NewIssue, We don't need
GetIssueId to get last issue-id.
Using same, last inserted issue-id would be better.
Signed-off-by: Seongmin Lee boltlessengineer@proton.me
···-err := e.QueryRow(`select next_issue_id from repo_issue_seqs where repo_at = ?`, repoAt).Scan(&issueId)err := e.QueryRow(`select owner_did from issues where repo_at = ? and issue_id = ?`, repoAt, issueId).Scan(&ownerDid)
············
············