Skip to content

Commit

Permalink
Merge pull request #407 from YujithIsura/main
Browse files Browse the repository at this point in the history
enrollment api bal version updated and student profile WIP
  • Loading branch information
YujithIsura authored Sep 30, 2024
2 parents 473d4a0 + 9c7a020 commit cf702c9
Show file tree
Hide file tree
Showing 18 changed files with 1,681 additions and 78 deletions.
4 changes: 2 additions & 2 deletions campus/bffs/enrollment/api/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
org = "avinyafoundation"
name = "enrollment_bff"
version = "1.1.0"
distribution = "2201.5.0"
version = "2.1.0"
distribution = "2201.8.7"

[build-options]
observabilityIncluded = true
3 changes: 3 additions & 0 deletions campus/frontend/.fvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"flutter": "3.13.1"
}
3 changes: 3 additions & 0 deletions campus/frontend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

# FVM Version Cache
.fvm/
11 changes: 6 additions & 5 deletions campus/frontend/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"githubPullRequests.ignoredPullRequestBranches": [
"main"
],
"editor.formatOnSave": true,
"editor.formatOnPaste": true
"githubPullRequests.ignoredPullRequestBranches": [
"main"
],
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"dart.flutterSdkPath": ".fvm/versions/3.13.1"
}
21 changes: 10 additions & 11 deletions campus/frontend/assets/config/dev-cloud.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"campusProfileBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/profile-bff/1.0.0",
"campusAttendanceBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/attendance-bff/1.0.0",
"campusPctiNotesBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/pcti-notes-bff/1.0.0",
"campusPctiFeedbackBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/pcti-feedback-bff/1.0.0",
"campusAssetsBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/asset-bff/1.0.0",
"choreo_sts_endpoint" : "https://sts.choreo.dev/oauth2/token",
"asgardeo_token_endpoint" : "https://api.asgardeo.io/t/avinyatest/oauth2/token",
"logout_url" : "https://api.asgardeo.io/t/avinyatest/oidc/logout"
}


"campusProfileBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/profile-bff/1.0.0",
"campusAttendanceBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/attendance-bff/1.0.0",
"campusPctiNotesBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/pcti-notes-bff/1.0.0",
"campusPctiFeedbackBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/pcti-feedback-bff/1.0.0",
"campusAssetsBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/asset-bff/1.0.0",
"campusEnrollmentsBffApiUrl": "http://localhost:9095",
"choreo_sts_endpoint": "https://sts.choreo.dev/oauth2/token",
"asgardeo_token_endpoint": "https://api.asgardeo.io/t/avinyatest/oauth2/token",
"logout_url": "https://api.asgardeo.io/t/avinyatest/oidc/logout"
}
21 changes: 10 additions & 11 deletions campus/frontend/assets/config/dev.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"campusProfileBffApiUrl" : "http://localhost:9090",
"campusAttendanceBffApiUrl" : "http://localhost:9091",
"campusPctiNotesBffApiUrl" : "http://localhost:9092",
"campusPctiFeedbackBffApiUrl" : "http://localhost:9093",
"campusAssetsBffApiUrl" : "http://localhost:9094",
"choreo_sts_endpoint" : "https://sts.choreo.dev/oauth2/token",
"asgardeo_token_endpoint" : "https://api.asgardeo.io/t/avinyatest/oauth2/token",
"logout_url" : "https://api.asgardeo.io/t/avinyatest/oidc/logout"
}


"campusProfileBffApiUrl": "http://localhost:9090",
"campusAttendanceBffApiUrl": "http://localhost:9091",
"campusPctiNotesBffApiUrl": "http://localhost:9092",
"campusPctiFeedbackBffApiUrl": "http://localhost:9093",
"campusAssetsBffApiUrl": "http://localhost:9094",
"campusEnrollmentsBffApiUrl": "http://localhost:9095",
"choreo_sts_endpoint": "https://sts.choreo.dev/oauth2/token",
"asgardeo_token_endpoint": "https://api.asgardeo.io/t/avinyatest/oauth2/token",
"logout_url": "https://api.asgardeo.io/t/avinyatest/oidc/logout"
}
21 changes: 10 additions & 11 deletions campus/frontend/assets/config/prod.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"campusProfileBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-prod.e1-us-east-azure.choreoapis.dev/fieg/profile-bff/0.9.0",
"campusAttendanceBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-prod.e1-us-east-azure.choreoapis.dev/fieg/attendance-bff/0.9.0",
"campusPctiNotesBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/pcti-notes-bff/1.0.0",
"campusPctiFeedbackBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/pcti-feedback-bff/1.0.0",
"campusAssetsBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-prod.e1-us-east-azure.choreoapis.dev/fieg/asset-bff/0.9.0",
"choreo_sts_endpoint" : "https://sts.choreo.dev/oauth2/token",
"asgardeo_token_endpoint" : "https://api.asgardeo.io/t/avinyaacademy/oauth2/token",
"logout_url" : "https://api.asgardeo.io/t/avinyaacademy/oidc/logout"
}


"campusProfileBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-prod.e1-us-east-azure.choreoapis.dev/fieg/profile-bff/0.9.0",
"campusAttendanceBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-prod.e1-us-east-azure.choreoapis.dev/fieg/attendance-bff/0.9.0",
"campusPctiNotesBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/pcti-notes-bff/1.0.0",
"campusPctiFeedbackBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/pcti-feedback-bff/1.0.0",
"campusAssetsBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-prod.e1-us-east-azure.choreoapis.dev/fieg/asset-bff/0.9.0",
"campusEnrollmentsBffApiUrl": "http://localhost:9095",
"choreo_sts_endpoint": "https://sts.choreo.dev/oauth2/token",
"asgardeo_token_endpoint": "https://api.asgardeo.io/t/avinyaacademy/oauth2/token",
"logout_url": "https://api.asgardeo.io/t/avinyaacademy/oidc/logout"
}
21 changes: 10 additions & 11 deletions campus/frontend/assets/config/stag.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"campusProfileBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/profile-bff/0.9.0",
"campusAttendanceBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/attendance-bff/0.9.0",
"campusPctiNotesBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/pcti-notes-bff/1.0.0",
"campusPctiFeedbackBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/pcti-feedback-bff/1.0.0",
"campusAssetsBffApiUrl" : "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/asset-bff/0.9.0",
"choreo_sts_endpoint" : "https://sts.choreo.dev/oauth2/token",
"asgardeo_token_endpoint" : "https://api.asgardeo.io/t/avinyaacademy/oauth2/token",
"logout_url" : "https://api.asgardeo.io/t/avinyaacademy/oidc/logout"
}


"campusProfileBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/profile-bff/0.9.0",
"campusAttendanceBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/attendance-bff/0.9.0",
"campusPctiNotesBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/pcti-notes-bff/1.0.0",
"campusPctiFeedbackBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/pcti-feedback-bff/1.0.0",
"campusAssetsBffApiUrl": "https://3a907137-52a3-4196-9e0d-22d054ea5789-dev.e1-us-east-azure.choreoapis.dev/fieg/asset-bff/0.9.0",
"campusEnrollmentsBffApiUrl": "http://localhost:9095",
"choreo_sts_endpoint": "https://sts.choreo.dev/oauth2/token",
"asgardeo_token_endpoint": "https://api.asgardeo.io/t/avinyaacademy/oauth2/token",
"logout_url": "https://api.asgardeo.io/t/avinyaacademy/oidc/logout"
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit cf702c9

Please sign in to comment.