Skip to content

Commit

Permalink
Added UI for clickup card
Browse files Browse the repository at this point in the history
  • Loading branch information
jvogt23 committed Aug 30, 2024
1 parent fdb2625 commit a679a82
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/Http/Controllers/DashboardController.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ public function index(Request $request)
'overrideDate' => $overrideDate,
'needsResume' => $needsResume,
'githubInvitePending' => $user->github_invite_pending,
'clickupInvitePending' => $user->clickup_invite_pending,
'sumsAccessPending' => $sumsAccessPending,
'signedLatestAgreement' => $signedLatestAgreement,
'signedAnyAgreement' => $signedAnyAgreement,
Expand Down
15 changes: 15 additions & 0 deletions resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,21 @@
</div>
</div>
@endif
@if($clickupInvitePending)
<div class="col-sm-6 com-md-3 col-lg-4">
<div class="card">
<div class="card-body">
<h4 class="card-title">
Clickup Invitation Pending
</h4>
<p class="card-text">
You have been invited to the RoboJackets Clickup page. Please go to Clickup using the link below and accept your invitation.
</p>
<a href="https://app.clickup.com">Accept Your Invitation</a>
</div>
</div>
</div>
@endif
@if($sumsAccessPending)
<div class="col-sm-6 com-md-3 col-lg-4">
<div class="card">
Expand Down

0 comments on commit a679a82

Please sign in to comment.