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

_notifications.html.haml « sidebar « components « boards « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21c9563e9db9f9f5416df01820cb1df9c998f676 (plain)
1
2
3
4
5
6
7
8
9
10
11
- if current_user
  .block.light.subscription{ ":data-url" => "'#{namespace_project_issues_path(@project.namespace, @project)}/' + issue.id + '/toggle_subscription'" }
    .title
      Notifications
    %button.btn.btn-block.btn-default.js-subscribe-button.issuable-subscribe-button.hide-collapsed{ type: "button" }
      {{ issue.subscribed ? 'Unsubscribe' : 'Subscribe' }}
    .subscription-status{ ":data-status" => "issue.subscribed ? 'subscribed' : 'unsubscribed'" }
      .unsubscribed{ "v-show" => "!issue.subscribed" }
        You're not receiving notifications from this thread.
      .subscribed{ "v-show" => "issue.subscribed" }
        You're receiving notifications because you're subscribed to this thread.