Cubicroot
Cubicroot
Anything new here? Would be interested in that feature too.
Same for me: ``` [0.141ms] [rows:0] CREATE TABLE `channels` (`id` bigint unsigned AUTO_INCREMENT,`created_at` datetime(3) NULL,`updated_at` datetime(3) NULL,`deleted_at` datetime(3) NULL,`created` datetime(3) NULL,`channel_identifier` varchar(500),`user_identifier` varchar(500),`time_zone` longtext,`daily_reminder` bigint unsigned,`calendar_secret` varchar(191),`role` longtext,PRIMARY KEY (`id`),INDEX...
There still seems to be no change to the current situation, the official go client [does not support e2ee](https://github.com/matrix-org/gomatrix/issues/31#issuecomment-565988610) and [pantalaimon](https://github.com/matrix-org/pantalaimon) is not yet very polished. For me there are...
I already used mautrix-go in other projects, the documentation is not the best and it would be a lot of work to change to it. Pantalaimon is totally new for...
Yeah they will share some of the structure. So I will open a new branch and play a bit with it.
We could use our OpenAPI documentation to autogenerate code samples. I already tried that with the [OpenAPI code sample generator](https://github.com/CubicrootXYZ/openapi-code-sample-generator).
Are there any standards and/or golang libraries you prefere for this? As I want to look into the actual implementation of such auth a little bit.
OAuth sounds fine for me. It is a widely adopted standard so it can be used for a GUI later too. Maybe an option for longterm (limitied access) tokens might...
I searched a bit through the available libraries. There are 2 gin-specific oauth libraries [one based on the basic oauth lib](https://github.com/go-oauth2/gin-server) and another one [from zalando](https://github.com/zalando/gin-oauth2). But both are not...
I implemented oauth as an optional authentication mechanism in a [branch of my fork](https://github.com/CubicrootXYZ/pushbits-server/tree/oauth-testing). I would enjoy any comments and ideas on how to improve it further. Currently the only...