Skip to content

Commit

Permalink
API V2 message
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueSCar committed Aug 24, 2024
1 parent bae550f commit 84943ab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stores/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ export const useMainStore = defineStore("main", () => {
const playTypes: Ref<PlayType[]> = ref([]);
const playStatTypes: Ref<PlayStatType[]> = ref([]);

const yearRanges = ref([2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023]);
const defaultYear = ref(2023);
const yearRanges = ref([2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024]);
const defaultYear = ref(2024);

const fbsConferences = ref([
{
Expand Down
6 changes: 6 additions & 0 deletions src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { useMainStore } from "@/stores/main";
import { useRouter } from "vue-router";
import BlogGroup from "@/components/BlogGroup.vue";
import Button from "primevue/button";
import Message from "primevue/message";
const mainStore = useMainStore();
const router = useRouter();
Expand All @@ -22,6 +23,11 @@ const gotoKeys = () => {
<template>
<div class="grid home-content mt-3 pl-3">
<main class="col-12 md:col-9">
<Message severity="warn" :closable="false">
CFBD API V2 is now available in a limited beta for Patreon subscribers.
CFBD API V1 will be sunset prior to the 2025 season.
<a href="https://www.patreon.com/posts/110346912">Click here for more details.</a>
</Message>
<BlogGroup />
</main>
<div class="col-12 md:col-3 text-center">
Expand Down

0 comments on commit 84943ab

Please sign in to comment.