Skip to content

Commit

Permalink
Remove expired sponsors from sponsors list
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed Nov 8, 2024
1 parent 25fb1da commit 1d06856
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 38 deletions.
36 changes: 0 additions & 36 deletions src/featured-sponsors.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,24 +33,6 @@
"url": "https://openstrategypartners.com/",
"github": "open-strategy-partners"
},
{
"name": "1xINTERNET",
"type": "standard",
"logo": "/logos/1xinternet.svg",
"darklogo": "/logos/1xinternet.svg",
"squareLogo": "/logos/1xinternet-square.svg",
"url": "https://1xinternet.de",
"github": "1xINTERNET"
},
{
"name": "Amazee.io",
"type": "standard",
"logo": "/logos/amazee-io-Mirantis-Logo-Black-White-IO.svg",
"darklogo": "/logos/amazee-io-mirantis-darkmode.svg",
"squareLogo": "/logos/amazee-io-square.svg",
"url": "https://amazee.io/",
"github": "amazee.io"
},
{
"name": "Agaric",
"type": "standard",
Expand Down Expand Up @@ -105,15 +87,6 @@
"url": "https://gizra.com/",
"github": "gizra"
},
{
"name": "DrupalEasy",
"type": "standard",
"logo": "/logos/drupaleasy.png",
"darklogo": "/logos/drupaleasy-darkmode.png",
"squareLogo": "/logos/drupaleasy-square.svg",
"url": "https://www.drupaleasy.com/",
"github": "drupaleasy"
},
{
"name": "mobilistics",
"type": "standard",
Expand Down Expand Up @@ -175,14 +148,5 @@
"squareLogo": "/logos/craft-cms-square.svg",
"url": "https://craftcms.com/",
"github": "craftcms"
},
{
"name": "undpaul",
"type": "standard",
"logo": "/logos/undpaul.svg",
"darklogo": "/logos/undpaul-darkmode.svg",
"squareLogo": "/logos/undpaul-square.svg",
"url": "https://undpaul.de",
"github": "undpaul"
}
]
4 changes: 2 additions & 2 deletions src/lib/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export async function getSponsors() {
query {
user(login: "rfay") {
... on Sponsorable {
sponsors(first: 100) {
sponsors(first: 100, isActive: true) {
totalCount
nodes {
... on User {
Expand All @@ -107,7 +107,7 @@ export async function getSponsors() {
}
organization(login: "ddev") {
... on Sponsorable {
sponsors(first: 100) {
sponsors(first: 100, isActive: true) {
totalCount
nodes {
... on User {
Expand Down

0 comments on commit 1d06856

Please sign in to comment.