Implemented paypal payments

This commit is contained in:
2017-07-17 03:14:05 +02:00
parent d33b93d115
commit 4f9cea89df
8 changed files with 128 additions and 12 deletions

View File

@ -13,7 +13,7 @@ func Get(ctx *aero.Context) string {
user := utils.GetUser(ctx)
if user == nil {
return ctx.Error(http.StatusForbidden, "Not logged in", nil)
return ctx.Error(http.StatusUnauthorized, "Not logged in", nil)
}
return utils.AllowEmbed(ctx, ctx.HTML(components.Settings(user)))