1
0
Fork 0

Merge pull request #95 from m4sk1n/follow-button

Do not show “Follow” button in notifications if already followed
This commit is contained in:
daniel 2018-06-01 16:37:08 -06:00 committed by GitHub
commit 2d0442b420
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -28,6 +28,7 @@
{!! $notification->rendered !!}
<span class="text-muted notification-timestamp pl-1">{{$notification->created_at->diffForHumans(null, true, true, true)}}</span>
</span>
@if($notification->actor->followedBy(Auth::user()->profile) == false)
<span class="float-right notification-action">
<form class="follow-form" method="post" action="/i/follow" style="display: inline;" data-id="{{$notification->actor->id}}" data-action="follow">
@csrf
@ -35,6 +36,7 @@
<button class="btn btn-primary font-weight-bold px-4 py-0" type="submit">Follow</button>
</form>
</span>
@endif
@break
@endswitch
</li>
@ -42,4 +44,4 @@
</ul>
</div>
</div>
@endsection
@endsection