This repository has been archived by the owner on Sep 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Release v1.0.0-beta3 #32
Merged
Merged
Changes from 12 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
727d826
Change formats type to `string` and split with comma separator
Typiqally e4dfa27
Use root configuration instead of configuration section
Typiqally 9c6cc0f
Merge pull request #25 from Typiqally/feat/export_arguments
Typiqally 710611d
Fix exceptions not properly displaying in the console
Typiqally ab7b394
Merge branch 'develop' into bug/exceptions_not_showing
Typiqally 06edd58
Add all module item types according to documentation
Typiqally f8d2132
Merge pull request #31 from Typiqally/bug/assignments_not_loading
NealGeilen c637f0a
Merge pull request #30 from Typiqally/bug/exceptions_not_showing
NealGeilen d80e190
Update application demo GIF
Typiqally 0a52a3b
Create code-analysis.yml
Typiqally c8fb8ac
Remove comments and enable additional queries
Typiqally 51dd789
Merge pull request #33 from Typiqally/feature/code-analysis-workflow
NealGeilen 0bbf268
Removed push from code-analysis.yml workflow
NealGeilen 0c6957e
Typo code-analysis.yml
NealGeilen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: "Code analysis" | ||
|
||
on: | ||
push: | ||
branches: [ "master", develop ] | ||
pull_request: | ||
branches: [ "master" ] | ||
schedule: | ||
- cron: '22 18 * * 5' | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze code | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ 'csharp' ] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
with: | ||
languages: ${{ matrix.language }} | ||
queries: security-extended,security-and-quality | ||
|
||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v2 | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 |
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,10 +1,16 @@ | ||
namespace Epsilon.Canvas.Abstractions.Model; | ||
using System.Text.Json.Serialization; | ||
|
||
namespace Epsilon.Canvas.Abstractions.Model; | ||
|
||
[JsonConverter(typeof(JsonStringEnumConverter))] | ||
public enum ModuleItemType | ||
{ | ||
Unknown, | ||
File, | ||
Page, | ||
Discussion, | ||
Assignment, | ||
Quiz, | ||
SubHeader, | ||
File, | ||
ExternalUrl, | ||
ExternalTool, | ||
} |
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check notice
Code scanning / CodeQL
Extraction error