Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
policy
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Wiki
Code
Merge requests
2
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
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gaia-X
Trust Services API
policy
Merge requests
!20
Create tasklist extension function
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Create tasklist extension function
31-create-tasklist-extension-function
into
main
Overview
2
Commits
2
Pipelines
3
Changes
3
All threads resolved!
Hide all comments
Merged
Yordan Kinkov
requested to merge
31-create-tasklist-extension-function
into
main
2 years ago
Overview
2
Commits
2
Pipelines
3
Changes
3
All threads resolved!
Hide all comments
Expand
Closes
#31 (closed)
@lyuben.penkovski
@valerii.kalashnikov
0
0
Merge request reports
Compare
main
version 2
7a75df9e
2 years ago
version 1
019c229e
2 years ago
main (base)
and
latest version
latest version
e1565663
2 commits,
2 years ago
version 2
7a75df9e
1 commit,
2 years ago
version 1
019c229e
1 commit,
2 years ago
3 files
+
126
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
cmd/policy/main.go
+
1
−
0
Options
@@ -86,6 +86,7 @@ func main() {
regofunc
.
Register
(
"cacheSet"
,
rego
.
Function4
(
cacheFuncs
.
CacheSetFunc
()))
regofunc
.
Register
(
"didResolve"
,
rego
.
Function1
(
didResolverFuncs
.
ResolveFunc
()))
regofunc
.
Register
(
"taskCreate"
,
rego
.
Function2
(
taskFuncs
.
CreateTaskFunc
()))
regofunc
.
Register
(
"taskListCreate"
,
rego
.
Function2
(
taskFuncs
.
CreateTaskListFunc
()))
regofunc
.
Register
(
"strictBuiltinErrors"
,
rego
.
StrictBuiltinErrors
(
true
))
}
Loading