mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
468 B
28 lines
468 B
4 years ago
|
package internal
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gin-gonic/gin"
|
||
|
"github.com/imdotdev/im.dev/server/pkg/common"
|
||
|
"github.com/imdotdev/im.dev/server/pkg/config"
|
||
|
)
|
||
|
|
||
|
type UIConfig struct {
|
||
|
Posts *UIPosts `json:"posts"`
|
||
|
}
|
||
|
|
||
|
type UIPosts struct {
|
||
|
BriefMaxLen int `json:"briefMaxLen"`
|
||
|
}
|
||
|
|
||
|
func GetUIConfig(c *gin.Context) {
|
||
|
conf := &UIConfig{
|
||
|
Posts: &UIPosts{
|
||
|
BriefMaxLen: config.Data.Posts.BriefMaxLen,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
c.JSON(http.StatusOK, common.RespSuccess(conf))
|
||
|
}
|