Link color on homepage, more planned ideas

This commit is contained in:
Alex Thomassen 2023-11-24 00:05:46 +00:00
parent 973fde7e36
commit cd876b7035
Signed by: Alex
GPG Key ID: 10BD786B5F6FF5DE
2 changed files with 8 additions and 4 deletions

View File

@ -12,7 +12,7 @@
@if (Auth::check())
{{ __("You're logged in!") }} <a href="{{ route('dashboard') }}">{{ __("Click here to access your dashboard") }}</a>
@else
<p>{{ __("You're not logged in!") }} <a href="{{ route('login') }}">{{ __("Click here to log in") }}</a></p>
<p>{{ __("You're not logged in!") }} <a href="{{ route('login') }}" class="text-amber-400">{{ __("Click here to log in") }}</a></p>
@endif
</div>
</div>

View File

@ -35,9 +35,13 @@
<ul class="list-disc list-inside mt-2">
<li>Channels that are tracked where you have moderator access will be <a href="https://twitch.uservoice.com/forums/310213-developers/suggestions/38203849-add-endpoint-to-return-channels-where-the-user-is" class="underline text-amber-400">automatically retrieved from Twitch's API</a>. At the moment you have to be manually added to the database.</li>
<li>Pagination, currently you can only see the latest 100 moderator actions</li>
<li>Automatic conversion to local time. Currently it's displayed in UTC</li>
<li>See related moderation actions, for example if a specific viewer has been timed out or banned multiple times</li>
<li>Different filtering options: Type of action (timeout, raid etc.), moderator (whodunit), user/viewer (next point).</li>
<li>Searching by text.</li>
<li>See related moderation actions, for example if a specific viewer has been timed out or banned multiple times.</li>
<li>Pagination, currently you can only see the latest 100 moderator actions.</li>
<li>Automatic conversion to local time. Currently it's displayed in UTC.</li>
<li>Ability to see a viewer's chat messages at the time of action, alongside messages before/after to see context.</li>
<li>... and probably more I'll figure out as I go along.</li>
</ul>
</div>
</div>