package server import ( "net/http" "github.com/localhots/empact/db" ) func apiOrgsHandler(w http.ResponseWriter, r *http.Request) { req, _ := parseRequest(w, r) orgs := db.UserOrgs(req.login) req.respondWith(orgs) } func apiTeamsHandler(w http.ResponseWriter, r *http.Request) { req, stat := parseRequest(w, r) teams := db.OrgTeams(stat.Org) req.respondWith(teams) } func apiReposHandler(w http.ResponseWriter, r *http.Request) { req, stat := parseRequest(w, r) repos := db.OrgRepos(stat.Org) req.respondWith(repos) } func apiSyncUsersHandler(w http.ResponseWriter, r *http.Request) { _ = []string{ "rs", "henrik", "Rakoth", "anton-ferio", "Pavliko", "codesnik", "abragin", "mszakharov", "aki-russia", "eliog", "alfuken", "nickzayarny", "inque", "Exoth", "julik", "WebwinkeleninNL", "dafa", "XXXVII", "undr", "vesterbaek", "floatbox", "siuying", "adamjernst", "exalted", "kslazarev", "waaa", "sevabill", "MitryBur", "nonamelive", "neogithub", "unintended", "yurieasy", "fsaragoca", "pyromaniac", "AntonKozlovsky", "bskaplou", "Scull007", "vzzhobbot", "seviu", "zynaps", "ecentinela", "besi", "peanut", "sannysoft", "tvon", "andybee", "cbowns", "muhku", "athasach", "fannheyward", "piotrb", "rickygu", "jcole", "Xenofex", "phabricator", "arr-ee", "clowwindy", "gotosleep", "rshevchuk", "acoomans", "andreyzakharevich", "b1uebyte", "andrewgr", "nivektric", "rmustafin", "allaud", "grampe", "dittos", "jianlin", "hruschev", "svetadob", "ajoslin", "erlikh", "kurige", "dbushell", "dhruv-bhatia", "dimaivanov", "JaviSoto", "NachoSoto", "pkozlowski-opensource", "rikkert", "jurezove", "mattrobenolt", "tirsen", "Vitalina", "ericzou", "SRandazzo", "matej", "typesafe", "zvirusz", "arbarlow", "localhots", "nurikk", "chicoxyzzy", "petebacondarwin", "reidmain", "kawanet", "aburgel", "achwedyk", "joshdmiller", "ramandv", "Reflejo", "richardTowers", "just-boris", "Pashugan", "tiagoroldao", "ballmw", "nelsonmenezes", "SidhNor", "ciplazar", "skivvies", "theDoug", "thiagofelix", "inamiy", "marknadig", "nogizhopaboroda", "STAH", "joshkurz", "n-miyo", "nebillo", "antonellopasella", "bekos", "sebreh", "bm-i", "mraible", "Timrael", "anton-dev-ua", "christianv", "ezotrank", "Kapin", "themikelee", "ubernil", "gnesher", "jparise", "shaungrady", "thisboyiscrazy", "u16suzu", "vadv", "Vyazovoy", "andr0s", "dylanlingelbach", "eweast", "es128", "L42y", "0xced", "jonbcard", "lastnico", "mxparajuli", "sanyek", "bowenisdum", "garthex", "lavoy", "MoOx", "adam77", "PowerKiKi", "amirhhz", "dredozubov", "gsklee", "BB9z", "docallag", "Charuru", "elwayman02", "mokesmokes", "chebotovanton", "dalexsoto", "lukasz-zak", "nimdraugsael", "nils-wisiol", "nishesj", "owenmead", "tanyafn", "hsoi", "khalilravanna", "lsiv568", "Paulche", "Kudrik", "lgalfaso", "masarusanjp", "tissak", "DeLaGuardo", "IgorYurchenko", "lazychino", "maxbeatty", "nonmanifold", "psgibbs", "gringoireDM", "shifu", "alachaum", "DanWahlin", "jdecool", "Swiip", "bquorning", "chrisirhc", "ikesyo", "mysza", "pennig", "KoryNunn", "longlongjump", "scamden", "gabro", "hkjorgensen", "otmosina", "donholly", "eddiemonge", "jimrollenhagen", "ianjosephwilson", "nenemo", "tkothe", "jbruni", "mrmrs", "Sanjo", "arve0", "joshuacc", "MaarOfOz", "prkoat", "stan-z", "fotonstep", "luisobo", "martco", "metimus", "raylillywhite", "scarletsky", "fidian", "sibljon", "garnett", "musically-ut", "robertmryan", "seankenny", "tardyp", "danpe", "mismith", "crazytonyli", "mknippen", "cbebry", "milaniliev", "pieterclaerhout", "pyp", "bpoplauschi", "dmitry-dedukhin", "erikcharlebois", "jenshandersson", "selfservices", "kosyan", "fikriy", "akhenakh", "burakkilic", "hlian", "runmad", "limbo-lab", "Whirlwind", "finik", "taichino", "T-Pham", "jeffleeismyhero", "fliptheweb", "herrernst", "salling", "ivankozlov", "gertsonderby", "reydan", "stuartmcfarlane", "EngExp", "nkabardin", "rivera-ernesto", "a-wart", "dchohfi", "martinblech", "nickhingston", "rmaz", "schmidp", "adampierson", "pycoff", "graingert", "AJIekseys", "yegortimoschenko", "benfoxall", "thomasboyt", "Kr00lIX", "scythargon", "glassoff", "mainfish", "Kpeved", "tagirshine", "nancefulness", } }