Compare commits

...

2 Commits

Author SHA1 Message Date
6d35687ea0
Add to sources static list 2024-09-22 21:00:14 -05:00
2671be472a
Fix chris category in yiffy2 2024-09-22 20:58:19 -05:00
2 changed files with 3 additions and 1 deletions

View File

@ -151,7 +151,7 @@ module YiffRest
end
def category_info
[*APIImage.categories, { name: "Gay Polar Cutie", db: "chris", sfw: true }] # gay little polar cutie
[*APIImage.categories, APICategory.new("Gay Polar Cutie", "chris", true)] # gay little polar cutie
end
def notes_for_request

View File

@ -9,6 +9,8 @@ class APICategory
%w[inkbunny.net InkBunny],
%w[deviantart.com DeviantArt],
%w[twitter.com Twitter],
%w[x.com X],
%w[femboy.fan FemboyFans],
].freeze
def initialize(name, db, sfw)