0
0
mirror of https://github.com/mrusme/neonmodem.git synced 2025-10-21 19:44:27 -04:00

Removed capabilities check

This commit is contained in:
マリウス
2022-12-31 19:06:39 -05:00
parent 54acfe873c
commit d07a01df17

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
}