Commit cef4760a authored by Nourdin el Bacha's avatar Nourdin el Bacha

Fix bug in rails cheat sheet for MR

parent 4270e6be
...@@ -525,8 +525,8 @@ conflicting_permanent_redirects.destroy_all ...@@ -525,8 +525,8 @@ conflicting_permanent_redirects.destroy_all
### Close a merge request properly (if merged but still marked as open) ### Close a merge request properly (if merged but still marked as open)
```ruby ```ruby
p = Project.find_by_full_path('') p = Project.find_by_full_path('<full/path/to/project>')
m = project.merge_requests.find_by(iid: ) m = p.merge_requests.find_by(iid: <iid>)
u = User.find_by_username('') u = User.find_by_username('')
MergeRequests::PostMergeService.new(p, u).execute(m) MergeRequests::PostMergeService.new(p, u).execute(m)
``` ```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment