mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-06 14:33:10 -06:00
* Multiroom feature * Run multiroom visibility expiration conditionally Remove SQLite and go 1.18 for tests matrixes * Remove sqlite from unit tests * Fix linter errors * Do not build with go1.18 * Do not run upgrade tests * Fix dendrite workflow * Add forgotten content and timestamp fields to multiroom in sync response * Fix syncapi multiroom unit tests * Review adjustments in queries and naming * Remove no longer maintained linters from golangci-lint configuration * Document sqlc code generation
25 lines
481 B
Go
25 lines
481 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.15.0
|
|
|
|
package mrd
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type SyncapiMultiroomDatum struct {
|
|
ID int64 `json:"id"`
|
|
UserID string `json:"user_id"`
|
|
Type string `json:"type"`
|
|
Data []byte `json:"data"`
|
|
Ts time.Time `json:"ts"`
|
|
}
|
|
|
|
type SyncapiMultiroomVisibility struct {
|
|
UserID string `json:"user_id"`
|
|
Type string `json:"type"`
|
|
RoomID string `json:"room_id"`
|
|
ExpireTs int64 `json:"expire_ts"`
|
|
}
|