File tree Expand file tree Collapse file tree 2 files changed +77
-5
lines changed
Expand file tree Collapse file tree 2 files changed +77
-5
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,78 @@ $ grunt serve
1818```
1919---
2020
21- ### Thanks
21+ ## Endpoint Schemas
2222
23- _ Cribbed with love from [ ng-boilerplate] ( https://github.com/ngbp/ng-boilerplate ) _
23+ ### Companies
24+ {
25+ "companies":
26+ [
27+ {
28+ "id": 1,
29+ "name": "company1",
30+ "category_id": 15,
31+ "total_funding": 1000.0,
32+ "latitude": 1.0,
33+ "longitude": 1.0,
34+ "investor_ids":
35+ [
36+ "person-1",
37+ "company-1"
38+ ],
39+ "funding_rounds":
40+ [
41+ {
42+ "id": 1,
43+ "raised_amount": 100.0,
44+ "funded_on": "10/10/2013"
45+ }
46+ ]
47+ }
48+ ]
49+ }
50+
51+ ### Investors
52+ {
53+ "investors"
54+ [
55+ {
56+ "id": "person-5",
57+ "name": "Test Name",
58+ "investor_type": "person",
59+ "invested_company_ids":
60+ [
61+ 1,
62+ 2,
63+ 3
64+ ],
65+ "invested_category_ids":
66+ [
67+ 10,
68+ 9,
69+ 8
70+ ]
71+ }
72+ ]
73+ }
74+
75+ ### Categories
76+ {
77+ "categories"
78+ [
79+ {
80+ "id": 1,
81+ "name", "A Category",
82+ "company_ids":
83+ [
84+ 1,
85+ 2,
86+ 3
87+ ],
88+ "investor_ids":
89+ [
90+ "person-3",
91+ "company-1"
92+ ]
93+ }
94+ ]
95+ }
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ <h3 class="pull-left">Companies</h3>
1111 < div class ="form-group ">
1212 < div class ="controls ">
1313 < div class ="input-group ">
14- < span class ="input-group-addon "> < i class ="icon -bullhorn "> </ i > </ span >
14+ < span class ="input-group-addon "> < i class ="glyphicon glyphicon -bullhorn "> </ i > </ span >
1515 < input ng-model ="searchCompanies " placeholder ="Find Companies " type ="text " class ="form-control ">
1616 </ div >
1717 </ div >
@@ -33,7 +33,7 @@ <h3 class="pull-left">Categories</h3>
3333 < div class ="form-group ">
3434 < div class ="controls ">
3535 < div class ="input-group ">
36- < span class ="input-group-addon "> < i class ="icon -tags "> </ i > </ span >
36+ < span class ="input-group-addon "> < i class ="glyphicon glyphicon -tags "> </ i > </ span >
3737 < input ng-model ="searchCategories " placeholder ="Find Categories " type ="text " class ="form-control ">
3838 </ div >
3939 </ div >
@@ -55,7 +55,7 @@ <h3 class="pull-left">Investors</h3>
5555 < div class ="form-group ">
5656 < div class ="controls ">
5757 < div class ="input-group ">
58- < span class ="input-group-addon "> < i class ="icon -leaf "> </ i > </ span >
58+ < span class ="input-group-addon "> < i class ="glyphicon glyphicon -leaf "> </ i > </ span >
5959 < input ng-model ="searchInvestors " placeholder ="Find Investors " type ="text " class ="form-control ">
6060 </ div >
6161 </ div >
You can’t perform that action at this time.
0 commit comments