back to classics
parent
7818c6cb65
commit
39c5e5c423
|
@ -1,5 +1,5 @@
|
||||||
import overseer.apis.v1.base as base
|
import overseer.apis.v1.base as base
|
||||||
from overseer.apis.v1.base import api
|
from overseer.apis.v1.base import api
|
||||||
|
|
||||||
api.add_resource(base.Suspicions, "/suspicions")
|
api.add_resource(base.Suspicions, "/instances")
|
||||||
api.add_resource(base.Instances, "/instances")
|
api.add_resource(base.Whitelist, "/whitelist")
|
||||||
|
|
|
@ -41,7 +41,7 @@ class Suspicions(Resource):
|
||||||
return {"instances": sus_instances},200
|
return {"instances": sus_instances},200
|
||||||
|
|
||||||
|
|
||||||
class Instances(Resource):
|
class Whitelist(Resource):
|
||||||
get_parser = reqparse.RequestParser()
|
get_parser = reqparse.RequestParser()
|
||||||
get_parser.add_argument("Client-Agent", default="unknown:0:unknown", type=str, required=False, help="The client name and version.", location="headers")
|
get_parser.add_argument("Client-Agent", default="unknown:0:unknown", type=str, required=False, help="The client name and version.", location="headers")
|
||||||
get_parser.add_argument("endorsements", required=False, default=1, type=int, help="Limit to this amount of endorsements of more", location="args")
|
get_parser.add_argument("endorsements", required=False, default=1, type=int, help="Limit to this amount of endorsements of more", location="args")
|
||||||
|
|
Loading…
Reference in New Issue