BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
b2d577a7
Unverified
Commit
b2d577a7
authored
Jun 02, 2017
by
Luke "Jared" Bennett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix up merge issues
parent
5a4a0824
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
app.vue
app/assets/javascripts/issue_show/components/app.vue
+3
-0
issuables_helper.rb
app/helpers/issuables_helper.rb
+3
-1
schema.rb
db/schema.rb
+1
-1
No files found.
app/assets/javascripts/issue_show/components/app.vue
View file @
b2d577a7
...
...
@@ -117,6 +117,9 @@ export default {
formState
()
{
return
this
.
store
.
formState
;
},
hasUpdated
()
{
return
!!
this
.
state
.
updatedAt
;
},
},
components
:
{
descriptionComponent
,
...
...
app/helpers/issuables_helper.rb
View file @
b2d577a7
...
...
@@ -219,7 +219,9 @@ module IssuablesHelper
initialDescriptionText:
issuable
.
description
}
data
.
merge
(
updated_at_by
(
issue
))
data
.
merge!
(
updated_at_by
(
issuable
))
data
.
to_json
end
def
updated_at_by
(
issuable
)
...
...
db/schema.rb
View file @
b2d577a7
...
...
@@ -1446,8 +1446,8 @@ ActiveRecord::Schema.define(version: 20170525174156) do
t
.
string
"token"
t
.
boolean
"pipeline_events"
,
default:
false
,
null:
false
t
.
boolean
"confidential_issues_events"
,
default:
false
,
null:
false
t
.
boolean
"job_events"
,
default:
false
,
null:
false
t
.
boolean
"repository_update_events"
,
default:
false
,
null:
false
t
.
boolean
"job_events"
,
default:
false
,
null:
false
end
add_index
"web_hooks"
,
[
"project_id"
],
name:
"index_web_hooks_on_project_id"
,
using: :btree
...
...
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