- Store birth month and day in user_pref with default 10/18 - Migrate existing user_pref rows to fill missing birthday fields - Expose birthday editing in the webui profile page - Replace hardcoded birthday values in user info, top info, and product list responses - Fix birthday month/day field alignment in the profile form Signed-off-by: Sean Du <do4suki@gmail.com>
18 lines
301 B
Go
18 lines
301 B
Go
package payment
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func PaymentApi(ctx *gin.Context, action string) (res any, err error) {
|
|
switch action {
|
|
case "productList":
|
|
res, err = productList(ctx)
|
|
default:
|
|
err = fmt.Errorf("unimplemented action: payment: %s", action)
|
|
}
|
|
return res, err
|
|
}
|