aboutsummaryrefslogtreecommitdiffstats
path: root/api/graphql
Commit message (Collapse)AuthorAgeFilesLines
* entity/dag: proper base operation for simplified implementationMichael Muré2022-07-257-2812/+6008
| | | | | | | | - reduce boilerplace necessary to implement an operation - consolidate what an operation is in the core, which in turn pave the way for a generic cache layer mechanism - avoid the previously complex unmarshalling process - support operation metadata from the core - simplified testing
* refactor(809): eliminate need to defer CleanupTestRepos()Steve Moyer2022-06-161-2/+1
|
* graphql: fix two invalid mutex lock leading to data racesMichael Muré2022-06-052-6/+6
|
* update gqlgenMichael Muré2022-02-151-1296/+2931
|
* GraphQL: Implement AddCommentAndReopenBug mutationSascha2021-05-265-8/+463
|
* GraphQL: Add AddCommandAndCloseBug mutationSascha2021-05-205-34/+490
|
* Merge pull request #605 from ↵Michael Muré2021-04-231-1/+1
|\ | | | | | | | | GlancingMind/upstream-12-allow-users-to-inspect-their-current-identity-details WebUI: Add user profile
| * Use profile page for each identitySascha2021-04-131-4/+0
| | | | | | | | | | Authorcomponent links to the authors profile page. Replace pofile buglist with statistics
| * Add basic bug listingLena2021-04-131-1/+5
| |
* | make sure every text input is safe and validatedMichael Muré2021-04-171-6/+33
|/ | | | fix #630
* Merge remote-tracking branch 'origin/master' into dag-entityMichael Muré2021-03-295-0/+419
|\
| * Improve description of target-fieldSascha2021-03-201-1/+1
| |
| * GrapQL: Regenerate the GraphQL-ServerSascha2021-03-192-25/+364
| |
| * GraphQL: Add target to EditCommentInputSascha2021-03-192-1/+4
| |
| * Fix compilation errorsSascha2021-03-192-2/+5
| |
| * GraphQL: Add EditComment input/payload to gen_modelsSascha2021-03-191-0/+22
| |
| * GraphQL: Add EditComment mutation to schemaSascha2021-03-191-0/+22
| |
| * GraphQL: Add EditComment to mutation typeSascha2021-03-191-0/+2
| |
| * GraphQL: Resolve new EditComment mutationSascha2021-03-191-0/+28
| |
* | bug: migrate to the DAG entity structure!Michael Muré2021-02-142-19/+6
| |
* | deal with the previous changesMichael Muré2021-02-141-45/+4
|/
* repo: move bleve thereMichael Muré2020-12-081-1/+4
|
* repo: use go-git in more places, fix pushMichael Muré2020-10-041-1/+1
|
* repository: merge git.Hash in for one less /util packageMichael Muré2020-07-013-174/+173
|
* Reorganize the webUI and API codeMichael Muré2020-06-2740-0/+18222
Included in the changes: - create a new /api root package to hold all API code, migrate /graphql in there - git API handlers all use the cache instead of the repo directly - git API handlers are now tested - git API handlers now require a "repo" mux parameter - lots of untangling of API/handlers/middleware - less code in commands/webui.go