Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
305f4257bfef
Unverified
Commit
cf31f289
authored
Dec 29, 2013
by
Dmitriy Zaporozhets
Browse files
Move project_last_activity to ProjectsHelper
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
32c9c0a53272
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/helpers/application_helper.rb
View file @
305f4257
...
...
@@ -136,14 +136,6 @@ def hexdigest(string)
Digest
::
SHA1
.
hexdigest
string
end
def
project_last_activity
(
project
)
if
project
.
last_activity_at
time_ago_with_tooltip
(
project
.
last_activity_at
,
'bottom'
,
'last_activity_time_ago'
)
+
" ago"
else
"Never"
end
end
def
authbutton
(
provider
,
size
=
64
)
file_name
=
"
#{
provider
.
to_s
.
split
(
'_'
).
first
}
_
#{
size
}
.png"
image_tag
(
"authbuttons/
#{
file_name
}
"
,
...
...
app/helpers/projects_helper.rb
View file @
305f4257
...
...
@@ -187,4 +187,12 @@ def default_url_to_repo
def
default_clone_protocol
current_user
?
"ssh"
:
"http"
end
def
project_last_activity
(
project
)
if
project
.
last_activity_at
time_ago_with_tooltip
(
project
.
last_activity_at
,
'bottom'
,
'last_activity_time_ago'
)
+
" ago"
else
"Never"
end
end
end
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