Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
experience_builder
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
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
project
experience_builder
Merge requests
!1080
Resolve
#3526907
Client auto-save conflicts
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Resolve
#3526907
Client auto-save conflicts
issue/experience_builder-3526907:3526907-client-conflict
into
0.x
Overview
0
Commits
18
Pipelines
10
Changes
14
Closed
Ted Bowman
requested to merge
issue/experience_builder-3526907:3526907-client-conflict
into
0.x
1 month ago
Overview
0
Commits
18
Pipelines
10
Changes
14
Expand
Closes
#3526907
0
0
Merge request reports
Compare
0.x
version 9
f1ef8538
1 month ago
version 8
a7b1136e
1 month ago
version 7
9199da6f
1 month ago
version 6
1025e08e
1 month ago
version 5
0482c344
1 month ago
version 4
43a9c4d4
1 month ago
version 3
ad624957
1 month ago
version 2
1d06e01b
1 month ago
version 1
a863466a
1 month ago
0.x (base)
and
latest version
latest version
0b4c11b2
18 commits,
1 month ago
version 9
f1ef8538
14 commits,
1 month ago
version 8
a7b1136e
13 commits,
1 month ago
version 7
9199da6f
12 commits,
1 month ago
version 6
1025e08e
11 commits,
1 month ago
version 5
0482c344
7 commits,
1 month ago
version 4
43a9c4d4
6 commits,
1 month ago
version 3
ad624957
5 commits,
1 month ago
version 2
1d06e01b
3 commits,
1 month ago
version 1
a863466a
2 commits,
1 month ago
14 files
+
647
−
41
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
src/Controller/ApiLayoutController.php
+
0
−
5
Options
@@ -481,11 +481,6 @@ final class ApiLayoutController {
}
private
function
validateAutoSaves
(
EntityInterface
$entity
,
array
$body
):
void
{
// @todo Remove the special case for testing in https://drupal.org/i/3526907.
// @phpstan-ignore-next-line
if
(
!
(
drupal_valid_test_ua
()
&&
\Drupal
::
installProfile
()
!==
'nightwatch_testing'
))
{
return
;
}
if
(
!
\array_key_exists
(
'autoSaves'
,
$body
))
{
throw
new
BadRequestHttpException
(
'Missing autoSaves'
);
}
Loading