You've already forked AstralRinth
forked from didirus/AstralRinth
Refunds + Upgrading/Downgrading plans (#2983)
* Refunds + Upgrading/Downgrading plans * Servers list route * Finish, lint * add GAM fee to payouts * Sync payment intent id with stripe * fix lint, update migrations * Remove tauri generated files * Register refund route * fix refund bugs
This commit is contained in:
@@ -861,7 +861,6 @@ pub struct GalleryEditQuery {
|
||||
pub async fn edit_gallery_item(
|
||||
req: HttpRequest,
|
||||
web::Query(item): web::Query<GalleryEditQuery>,
|
||||
info: web::Path<(String,)>,
|
||||
pool: web::Data<PgPool>,
|
||||
redis: web::Data<RedisPool>,
|
||||
session_queue: web::Data<AuthQueue>,
|
||||
@@ -876,7 +875,6 @@ pub async fn edit_gallery_item(
|
||||
description: item.description,
|
||||
ordering: item.ordering,
|
||||
}),
|
||||
info,
|
||||
pool,
|
||||
redis,
|
||||
session_queue,
|
||||
@@ -894,7 +892,6 @@ pub struct GalleryDeleteQuery {
|
||||
pub async fn delete_gallery_item(
|
||||
req: HttpRequest,
|
||||
web::Query(item): web::Query<GalleryDeleteQuery>,
|
||||
info: web::Path<(String,)>,
|
||||
pool: web::Data<PgPool>,
|
||||
redis: web::Data<RedisPool>,
|
||||
file_host: web::Data<Arc<dyn FileHost + Send + Sync>>,
|
||||
@@ -904,7 +901,6 @@ pub async fn delete_gallery_item(
|
||||
v3::projects::delete_gallery_item(
|
||||
req,
|
||||
web::Query(v3::projects::GalleryDeleteQuery { url: item.url }),
|
||||
info,
|
||||
pool,
|
||||
redis,
|
||||
file_host,
|
||||
|
||||
Reference in New Issue
Block a user