gstvg

Results 25 comments of gstvg

Tract, written in Rust, can easily be compiled to ARM devices, and streaming audio on edge devices is one of their use-cases. I tried running it but there's an unimplemented...

A bit of context, I'm using it on a serverless lambda web api (knative), the model is only queried a few times before the program exits. Reduces the cold-start a...

Here: https://github.com/qor/admin/blob/master/views/metas/form/rich_editor.tmpl

Thanks for your reply and attention. This specific problem its easy to solve. I opened this issue with a more generic intention. I want to implement not only a type...

Well, not a beautiful solution, but works: ``` type RichText string func (RichText) ConfigureQorMeta(metaor resource.Metaor) { if meta, ok := metaor.(*admin.Meta); ok { meta.Type = "rich_editor" meta.Config = &admin.RichEditorConfig{} meta.GetBaseResource().(*admin.Resource).GetAdmin().RegisterFuncMap("raw",...

You need to overwrite the CRUD handlers. Take a look https://doc.getqor.com/admin/extend_admin.html#overwrite-curd-handler . The default QOR handlers are written in only 148 lines. Looks easy to rewrite them to another storage...

This is an undocumented feature, just add the method Stringify() string to your model, with value receiver, cause pointer receiver won't work. It's implemented here: https://github.com/qor/qor/blob/bfbb16ecbc40da17c123aa7cd7211b47caa31391/utils/utils.go#L164

Hotfix: type hotfixedAuthIdentity auth_identity.AuthIdentity func(hotfixedAuthIdentity) TableName() string {return "basics"} To use custom auth model without having to editing library files, name your user struct "Basics" or define a method TableName()...