Skip to content

Commit 28dac5e

Browse files
authored
Merge pull request #6 from laniltee/PatientService
Patient service
2 parents 35628d1 + 94c80f3 commit 28dac5e

4,271 files changed

Lines changed: 604614 additions & 169 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Final Document.pdf

154 KB
Binary file not shown.

Microservices/RequestService/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ app.put("/requests/:requestsId",function (req,res) {
152152
res.end();
153153
}
154154
requests.status = req.body.status;
155-
requests.save(function (error,department) {
155+
requests.save(function (error,requests) {
156156
if(error){
157157
res.status(500).end();
158158
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "angular",
3+
"version": "1.6.4",
4+
"license": "MIT",
5+
"main": "./angular.js",
6+
"ignore": [],
7+
"dependencies": {},
8+
"homepage": "https://github.com/angular/bower-angular",
9+
"_release": "1.6.4",
10+
"_resolution": {
11+
"type": "version",
12+
"tag": "v1.6.4",
13+
"commit": "097304875bf47c499c7a45711e28f16937dfacfd"
14+
},
15+
"_source": "https://github.com/angular/bower-angular.git",
16+
"_target": "^1.6.4",
17+
"_originalSource": "angular",
18+
"_direct": true
19+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Angular
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# packaged angular
2+
3+
This repo is for distribution on `npm` and `bower`. The source for this module is in the
4+
[main AngularJS repo](https://github.com/angular/angular.js).
5+
Please file issues and pull requests against that repo.
6+
7+
## Install
8+
9+
You can install this package either with `npm` or with `bower`.
10+
11+
### npm
12+
13+
```shell
14+
npm install angular
15+
```
16+
17+
Then add a `<script>` to your `index.html`:
18+
19+
```html
20+
<script src="/node_modules/angular/angular.js"></script>
21+
```
22+
23+
Or `require('angular')` from your code.
24+
25+
### bower
26+
27+
```shell
28+
bower install angular
29+
```
30+
31+
Then add a `<script>` to your `index.html`:
32+
33+
```html
34+
<script src="/bower_components/angular/angular.js"></script>
35+
```
36+
37+
## Documentation
38+
39+
Documentation is available on the
40+
[AngularJS docs site](http://docs.angularjs.org/).
41+
42+
## License
43+
44+
The MIT License
45+
46+
Copyright (c) 2010-2015 Google, Inc. http://angularjs.org
47+
48+
Permission is hereby granted, free of charge, to any person obtaining a copy
49+
of this software and associated documentation files (the "Software"), to deal
50+
in the Software without restriction, including without limitation the rights
51+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
52+
copies of the Software, and to permit persons to whom the Software is
53+
furnished to do so, subject to the following conditions:
54+
55+
The above copyright notice and this permission notice shall be included in
56+
all copies or substantial portions of the Software.
57+
58+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
59+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
60+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
61+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
62+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
63+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
64+
THE SOFTWARE.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/* Include this file in your html if you are using the CSP mode. */
2+
3+
@charset "UTF-8";
4+
5+
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak],
6+
.ng-cloak, .x-ng-cloak,
7+
.ng-hide:not(.ng-hide-animate) {
8+
display: none !important;
9+
}
10+
11+
ng\:form {
12+
display: block;
13+
}
14+
15+
.ng-animate-shim {
16+
visibility:hidden;
17+
}
18+
19+
.ng-anchor {
20+
position:absolute;
21+
}

0 commit comments

Comments
 (0)