Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added AssignmentScore Entity #63

Open
wants to merge 59 commits into
base: master
Choose a base branch
from

Conversation

zhikangxie107
Copy link
Collaborator

Proposed changes


Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue.

Types of changes


What types of changes does your code introduce?
Put an x in the boxes that apply

  • Bugfix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • Documentation Update (if none of the other choices apply)

Checklist


Put an x in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. This is simply a reminder of what we are going to look for before merging your code.

  • My changeset covers only what is described above (no extraneous changes)
  • Lint and unit tests pass locally with my changes
  • I have added tests that prove my fix is effective or that my feature works
  • I have added necessary documentation (if appropriate)
  • Any dependent changes have been merged downstream

Further comments


If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did and what alternatives you considered, etc...

zhikangxie107 and others added 22 commits October 19, 2022 17:18
Add the submission problem score entity

Add documentation

rename filenames to be consistently singular

Co-authored-by: Emil Kovacev <[email protected]>
Co-authored-by: Emil Kovacev <[email protected]>
Co-authored-by: John Abramo <[email protected]>
Co-authored-by: Alex M <[email protected]>
Co-authored-by: dylanzinsley <[email protected]>
Co-authored-by: Adrian Carter <[email protected]>
Co-authored-by: alan soto <[email protected]>
Co-authored-by: Alan Soto <[email protected]>
Co-authored-by: --global <--global>
Co-authored-by: Adrian Carter <[email protected]>
Co-authored-by: zhikangxie107 <[email protected]>
Co-authored-by: Dylanz5 <[email protected]>
Co-authored-by: ToNewAutumn <[email protected]>
Add code assignment entity

Integrate MinIO as a solution for saving files to disk
Add submissionScore entity to the API. This entity stores a score and feedback attached to a single submission
Bumps [qs](https://github.com/ljharb/qs) to 6.11.0 and updates ancestor dependencies [qs](https://github.com/ljharb/qs), [body-parser](https://github.com/expressjs/body-parser) and [express](https://github.com/expressjs/express). These dependencies need to be updated together.


Updates `qs` from 6.7.0 to 6.11.0
- [Release notes](https://github.com/ljharb/qs/releases)
- [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md)
- [Commits](ljharb/qs@v6.7.0...v6.11.0)

Updates `body-parser` from 1.19.0 to 1.20.1
- [Release notes](https://github.com/expressjs/body-parser/releases)
- [Changelog](https://github.com/expressjs/body-parser/blob/master/HISTORY.md)
- [Commits](expressjs/body-parser@1.19.0...1.20.1)

Updates `express` from 4.17.1 to 4.18.2
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@4.17.1...4.18.2)

---
updated-dependencies:
- dependency-name: qs
  dependency-type: indirect
- dependency-name: body-parser
  dependency-type: direct:production
- dependency-name: express
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [express](https://github.com/expressjs/express) from 4.17.1 to 4.17.3.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@4.17.1...4.17.3)

---
updated-dependencies:
- dependency-name: express
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [jsonwebtoken](https://github.com/auth0/node-jsonwebtoken) from 8.5.1 to 9.0.0.
- [Release notes](https://github.com/auth0/node-jsonwebtoken/releases)
- [Changelog](https://github.com/auth0/node-jsonwebtoken/blob/master/CHANGELOG.md)
- [Commits](auth0/node-jsonwebtoken@v8.5.1...v9.0.0)

---
updated-dependencies:
- dependency-name: jsonwebtoken
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [json5](https://github.com/json5/json5) from 2.2.0 to 2.2.3.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v2.2.0...v2.2.3)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
emilkovacev and others added 7 commits April 18, 2023 16:25
* Added a menu for the schema members
* Added comments for new members
* I suggest we replace comments with types, since "foreign key"
seems easier to follow
Every time I want to start up this project, I spend 30 or so minutes figuring out authorization. Instead, I figured it would be easier to put an example in the documentation to cut setup time and enable more commits in the future!
Pretty much just default Node.js config, just changed to only run on PRs
(instead of pushes and PRs targetting "master")
package.json defines requirement node >= 16
WeirdAlex03 and others added 27 commits April 18, 2023 16:25
GH concats it all into one line so escaping the line breaks isnt needed
This uses incorporates mattallty/jest-github-action to add annotations
in the test files on the failing tests, making it easier to
identify the problems
Test and Format now rely on Build, reducing duplicate code
(if this works the way I think it will)
Last commit:
> Test and Format now rely on Build, reducing duplicate code
> (if this works the way I think it will)

It did not. They're still unique environments,
so it still has to be set up for each action
Intentionally failing a test and messing up file formatting
to see how the actions deal with that
I won't tell it to actually commit yet, first I'll review the output
to make sure it isn't committing too much
This reverts the failing test intentionally added in
ddc6ce6
I won't tell it to actually commit yet, first I'll review the output
to make sure it isn't committing too much
- Added postman file config
- Edited docs for postman file
# Conflicts:
#	README.md
#	package-lock.json
#	package.json
Category Score Router Complete (Awaiting Controller and Validator)
…pm_and_yarn/qs-and-body-parser-and-express-6.11.0

build(deps): bump qs, body-parser and express
…pm_and_yarn/express-4.17.3

build(deps): bump express from 4.17.1 to 4.17.3
…pm_and_yarn/jsonwebtoken-9.0.0

build(deps): bump jsonwebtoken from 8.5.1 to 9.0.0
…pm_and_yarn/json5-2.2.3

build(deps): bump json5 from 2.2.0 to 2.2.3
@jessehartloff jessehartloff changed the base branch from master to upstream-master April 18, 2023 21:11
@jessehartloff jessehartloff changed the base branch from upstream-master to master April 18, 2023 21:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

8 participants