mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 01:24:44 +01:00
Restore appstore registration end point
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
using System;
|
||||
using MediaBrowser.Model.Entities;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
@@ -45,5 +46,21 @@ namespace MediaBrowser.Common.Security
|
||||
/// </summary>
|
||||
/// <returns>Task<SupporterInfo>.</returns>
|
||||
Task<SupporterInfo> GetSupporterInfo();
|
||||
|
||||
/// <summary>
|
||||
/// Register and app store sale with our back-end
|
||||
/// </summary>
|
||||
/// <param name="store"></param>
|
||||
/// <param name="application"></param>
|
||||
/// <param name="product"></param>
|
||||
/// <param name="feature"></param>
|
||||
/// <param name="type"></param>
|
||||
/// <param name="storeId"></param>
|
||||
/// <param name="storeToken"></param>
|
||||
/// <param name="email"></param>
|
||||
/// <param name="amt"></param>
|
||||
/// <returns>true if successful</returns>
|
||||
Task<Boolean> RegisterAppStoreSale(string store, string application, string product, string feature,
|
||||
string type, string storeId, string storeToken, string email, string amt);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user