Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
4ce0ebe3
Commit
4ce0ebe3
authored
Dec 17, 2021
by
Katrin Leinweber
Committed by
Achilleas Pipinellis
Dec 17, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rails cheatsheet: Align variables and update Service params
parent
ed5fbfb7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
doc/administration/troubleshooting/gitlab_rails_cheat_sheet.md
...dministration/troubleshooting/gitlab_rails_cheat_sheet.md
+9
-9
No files found.
doc/administration/troubleshooting/gitlab_rails_cheat_sheet.md
View file @
4ce0ebe3
...
...
@@ -824,28 +824,28 @@ conflicting_permanent_redirects.destroy_all
### Close a merge request properly (if merged but still marked as open)
```
ruby
p
=
Project
.
find_by_full_path
(
'<full/path/to/project>'
)
m
=
p
.
merge_requests
.
find_by
(
iid:
<
iid
>
)
u
=
User
.
find_by_username
(
'<username>'
)
MergeRequests
::
PostMergeService
.
new
(
p
,
u
).
execute
(
m
)
p
=
Project
.
find_by_full_path
(
'<namespace/project>'
)
m
=
p
.
merge_requests
.
find_by
(
iid:
<
iid
>
)
MergeRequests
::
PostMergeService
.
new
(
project:
p
,
current_user:
u
).
execute
(
m
)
```
### Delete a merge request
```
ruby
u
=
User
.
find_by_username
(
'<username>'
)
p
=
Project
.
find_by_full_path
(
'<
group>/<
project>'
)
m
=
p
.
merge_requests
.
find_by
(
iid:
<
IID
>
)
Issuable
::
DestroyService
.
new
(
m
.
project
,
u
).
execute
(
m
)
p
=
Project
.
find_by_full_path
(
'<
namespace/
project>'
)
m
=
p
.
merge_requests
.
find_by
(
iid:
<
iid
>
)
Issuable
::
DestroyService
.
new
(
project:
m
.
project
,
current_user:
u
).
execute
(
m
)
```
### Rebase manually
```
ruby
p
=
Project
.
find_by_full_path
(
'<project_path>'
)
m
=
project
.
merge_requests
.
find_by
(
iid:
)
u
=
User
.
find_by_username
(
'<username>'
)
MergeRequests
::
RebaseService
.
new
(
m
.
target_project
,
u
).
execute
(
m
)
p
=
Project
.
find_by_full_path
(
'<namespace/project>'
)
m
=
p
.
merge_requests
.
find_by
(
iid:
<
iid
>
)
MergeRequests
::
RebaseService
.
new
(
project:
m
.
target_project
,
current_user:
u
).
execute
(
m
)
```
## CI
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment