empact/server/api.go

24 lines
476 B
Go
Raw Normal View History

2015-03-05 22:25:26 +07:00
package server
import (
"net/http"
"github.com/localhots/empact/db"
)
2015-03-06 18:18:15 +07:00
func apiOrgsHandler(w http.ResponseWriter, r *http.Request) {
2015-03-06 19:36:35 +07:00
login := sessionUser(r)
2015-03-05 22:25:26 +07:00
orgs := db.UserOrgs(login)
respondWith(w, orgs)
2015-03-06 17:56:46 +07:00
}
2015-03-06 18:18:15 +07:00
func apiTeamsHandler(w http.ResponseWriter, r *http.Request) {
2015-03-06 17:56:46 +07:00
teams := db.OrgTeams(r.FormValue("org"))
respondWith(w, teams)
2015-03-05 22:25:26 +07:00
}
2015-03-06 18:18:15 +07:00
func apiReposHandler(w http.ResponseWriter, r *http.Request) {
repos := db.OrgRepos(r.FormValue("org"))
respondWith(w, repos)
2015-03-06 18:18:15 +07:00
}