Skip to content

Commit

Permalink
Pipelines Build & Deploy test (#20)
Browse files Browse the repository at this point in the history
* remove duplicated items by bad merge

* add security tier

* change pass move token controller, change tokencontroller to authcontroller

* Corrige Bug al gueardar seeds

* Backend CheckLists

* Backend Signatures, Report COnfiguration repository, queires checklist, domain events

* Uploads service & Storage helper class, paths on settings

* solve typo in Shared proyect reference

* Fix Bug Querying CheckLists

* Ignore some local files

* Optional items in  query
  • Loading branch information
ivaneliasoo authored Jun 9, 2020
1 parent 4a8100c commit cefbe66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -348,3 +348,5 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/
/src/Backend/Inspections.API/Properties/serviceDependencies.json
/src/Backend/Inspections.API/Properties/serviceDependencies.inspectionsscb - Web Deploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ public IEnumerable<ResumenCheckList> GetByFilter(string filter)
LastEdit,
LastEditUser
FROM Inspections.CheckLists cl
INNER JOIN (
LEFT JOIN (
SELECT CheckListId, COUNT([Key]) AS TotalParams
FROM Inspections.CheckListParams
GROUP BY CheckListId
) Params
ON cl.Id = Params.CheckListId
INNER JOIN (
LEFT JOIN (
SELECT CheckListId, COUNT(Id) AS TotalItems
FROM Inspections.CheckListItems
GROUP BY CheckListId
Expand Down

0 comments on commit cefbe66

Please sign in to comment.