Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
Modularizovatelná webová aplikace s modulem pro správu cílů - BC-304 Crew
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ASWI
ASWI 2021
Modularizovatelná webová aplikace s modulem pro správu cílů - BC-304 Crew
Merge requests
!16
Command connections
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Command connections
command-connections
into
dev
Overview
0
Commits
13
Pipelines
4
Changes
9
Merged
Milan Hotovec
requested to merge
command-connections
into
dev
3 years ago
Overview
0
Commits
13
Pipelines
4
Changes
9
Expand
0
0
Merge request reports
Viewing commit
4015f386
Prev
Next
Show latest version
9 files
+
67
−
27
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
4015f386
Merge remote-tracking branch 'origin/goals-fe' into command-connections
· 4015f386
Milan Hotovec
authored
3 years ago
src/Core/Application/Leuze.Core.Application/CQRS/Users/Queries/GetUsersList.cs
+
1
−
4
Options
using
Leuze.Core.Domain.Domains.Users.DTOs
;
using
Leuze.Core.Domain.Repositories
;
using
Microsoft.AspNetCore.Components.Authorization
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Security.Claims
;
using
System.Threading
;
using
System.Threading.Tasks
;
using
Leuze.Core.Application.Authentication
;
@@ -19,7 +16,7 @@ namespace Leuze.Core.Application.CQRS.Users.Queries
/// <summary>
///
/// </summary>
public
record
Query
(
bool
ExcludeMyself
,
Guid
LimitForRole
)
:
IBaseRequest
<
Response
>;
public
record
Query
(
bool
ExcludeMyself
,
string
?
LimitForRole
)
:
IBaseRequest
<
Response
>;
/// <summary>
///
Loading