QOR is a set of libraries written in Go that abstracts common features needed for business applications, CMSs, and E-commerce systems.
Admin.AddMenu(&admin.Menu{Name: inflection.Plural(res.Config.Name), IconName: res.Config.IconName, Permissioner: res, Priority: res.Config.Priority, Ancestors: res.Config.Menu, RelativePath: res.ToParam()})
Admin.RegisterResourceRouters(res, "create", "update", "read")
How can I access login page for a provider. Accessing http://localhost:9000/auth/login results in following page:
I do see the login file under password/views/auth/login/providers/password/tmpl, but cannot find the url which would send this page. Could not find anything in PasswordProvider .ServeHttp method which sends this page - was expecting a handle in this file
I'm looking for some help with the API. I can't the PUT (Update) call to work. The system always returns the old record.
curl --location --request PUT 'http://localhost:9090/api/task_types/1.json' \
--header 'Content-Type: application/javascript' \
--data-raw '{
"ID": 1,
"Icon": "foo",
"Title": "Text"
}'
Any help is much appreciated.