Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_event.html.haml « events « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c28fe7c8330152a1a27f55064febf5e5edf0af85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- event = event.present

- if event.visible_to_user?(current_user)
  .event-item{ class: current_path?('users#activity') ? 'user-profile-activity gl-border-bottom-0 gl-pl-7! gl-pb-3' : '' }
    .event-item-timestamp.gl-font-sm
      #{time_ago_with_tooltip(event.created_at)}

    - if event.wiki_page?
      = render "events/event/wiki", event: event
    - elsif event.design?
      = render 'events/event/design', event: event
    - elsif event.created_project_action?
      = render "events/event/created_project", event: event
    - elsif event.push_action?
      = render "events/event/push", event: event
    - elsif event.commented_action?
      = render "events/event/note", event: event
    - else
      = render "events/event/common", event: event
- elsif @user&.include_private_contributions?
  = render "events/event/private", event: event