1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-07-21 03:14:14 -04:00

Removed capabilities check

This commit is contained in:
マリウス 2022-12-31 19:06:39 -05:00
parent 54acfe873c
commit d07a01df17
No known key found for this signature in database
GPG Key ID: 272ED814BF63261F

View File

@ -52,16 +52,7 @@ func NewModel(c *ctx.Ctx) Model {
}
m.header = header.NewModel(m.ctx)
for _, capability := range (*m.ctx.Systems[0]).GetCapabilities() { // TODO
switch capability.ID {
case "posts":
m.views = append(m.views, posts.NewModel(m.ctx))
// case "groups":
// m.views = append(m.views, groups.NewModel(m.ctx))
// case "search":
// m.views = append(m.views, search.NewModel(m.ctx))
}
}
m.views = append(m.views, posts.NewModel(m.ctx))
return m
}