-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #894 from rokwire/release/1.13.0
Release/1.13.0
- Loading branch information
Showing
36 changed files
with
1,230 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,28 @@ | ||
# Default assignment | ||
* @sandeep-ps | ||
* @sandeep-ps | ||
|
||
# App Config Building Block | ||
/appconfigservice/ @wenjzhu | ||
|
||
# Authentication Building Block | ||
/authservice/ @wenjzhu | ||
/appconfigservice/ @minump | ||
|
||
# Authentication Middleware Library | ||
/lib/auth-middleware/ @ywkim312 | ||
/lib/auth-middleware/ @ywkim312 | ||
|
||
# API Doc | ||
/Dockerfile @sandeep-ps | ||
/README @sandeep-ps | ||
|
||
# Events Building Block | ||
/eventservice/ @bingzhang | ||
/eventservice/ @bingzhang | ||
|
||
# Logging Building Block | ||
/loggingservice/ @ywkim312 | ||
/loggingservice/ @ywkim312 | ||
|
||
# Profile Building Block | ||
/profileservice/ @ywkim312 | ||
/profileservice/ @ywkim312 | ||
|
||
# Contributions Building Block | ||
/contributions/* @ywkim312 | ||
/contributions/api/ @ywkim312 | ||
/contributions/* @ywkim312 | ||
/contributions/api/ @ywkim312 | ||
|
||
# Contributions Catalog | ||
/contributions/catalog/ @wenjzhu | ||
/contributions/catalog/ @minump |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Copyright 2020 Board of Trustees of the University of Illinois. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import utils.datasetutils as datasetutils | ||
|
||
class Review: | ||
def __init__(self, injson): | ||
self.reviewerId = None | ||
self.reviewComment = None | ||
self.reviewLastUpdated = None | ||
|
||
self, restjson = datasetutils.update_review_dataset_from_json(self, injson) | ||
|
||
def set_reviewer_id(self, reviewerId): | ||
self.reviewerId = reviewerId | ||
|
||
def get_reviewer_id(self): | ||
return self.reviewerId | ||
|
||
def set_review_comment(self, reviewComment): | ||
self.reviewComment = reviewComment | ||
|
||
def get_review_comment(self): | ||
return self.reviewComment | ||
|
||
def set_review_last_updated(self, reviewLastUpdated): | ||
self.reviewLastUpdated = reviewLastUpdated | ||
|
||
def get_review_last_updated(self): | ||
return self.reviewLastUpdated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.