Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
usp-js
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue 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
WebSDK
usp-js
Merge requests
!8
Add persist and enable options to subscribe
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add persist and enable options to subscribe
sub-persist
into
devel
Overview
0
Commits
2
Pipelines
1
Changes
3
Merged
Marin Karamihalev
requested to merge
sub-persist
into
devel
1 year ago
Overview
0
Commits
2
Pipelines
1
Changes
3
Expand
0
0
Merge request reports
Compare
devel
devel (base)
and
latest version
latest version
c822a522
2 commits,
1 year ago
3 files
+
6
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
src/commands/recipes/subscribe.ts
+
3
−
3
Options
@@ -14,12 +14,12 @@ const make: MakeFn =
const
newSubPath
=
await
call
(
"
ADD
"
,
{
path
:
subscriptionPath
,
value
:
{
Enable
:
true
,
Enable
:
opts
.
enable
??
true
,
ID
:
id
,
NotifType
:
opts
.
notif
,
NotifRetry
:
"
retry
"
in
opts
?
opts
.
retry
:
true
,
NotifRetry
:
opts
.
retry
??
true
,
ReferenceList
:
refList
,
Persistent
:
false
,
Persistent
:
opts
.
persist
??
false
,
},
});
Loading