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

replacing BIB_BLUE_BUTTON_BASE_URL to BIG_BLUE_BUTTON_BASE_URL #1050

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,7 @@ USER_SERVICE_BASE_URL='/user/'
BIG_BLUE_BUTTON_URL=https://dev.some.temp.org

# Big blue button base URL
BIB_BLUE_BUTTON_BASE_URL=/bigbluebutton/
BIG_BLUE_BUTTON_BASE_URL=/bigbluebutton/

# Meeting end callback events endpoint
MEETING_END_CALLBACK_EVENTS=https%3A%2F%2Fdev.some-apis.temp.org%2Fmentoring%2Fv1%2Fsessions%2Fcompleted
Expand Down
2 changes: 1 addition & 1 deletion dev-ops/integration_test.mentoring.env
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ USER_SERIVCE_BASE_URL = '/user/'
BIG_BLUE_BUTTON_URL = https://dev.mentoring.shikshalokam.org

# Big blue button base url
BIB_BLUE_BUTTON_BASE_URL = /bigbluebutton/
BIG_BLUE_BUTTON_BASE_URL = /bigbluebutton/

# Meeting end callback events end point
MEETING_END_CALLBACK_EVENTS = https%3A%2F%2Fdev.elevate-apis.shikshalokam.org%2Fmentoring%2Fv1%2Fsessions%2Fcompleted
Expand Down
2 changes: 1 addition & 1 deletion src/.env.backup
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ USER_SERIVCE_BASE_URL = '/user/'
BIG_BLUE_BUTTON_URL = https://dev.mentoring.shikshalokam.org

# Big blue button base url
BIB_BLUE_BUTTON_BASE_URL = /bigbluebutton/
BIG_BLUE_BUTTON_BASE_URL = /bigbluebutton/

# Meeting end callback events end point
MEETING_END_CALLBACK_EVENTS = https%3A%2F%2Fdev.elevate-apis.shikshalokam.org%2Fmentoring%2Fv1%2Fsessions%2Fcompleted
Expand Down
2 changes: 1 addition & 1 deletion src/.env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ USER_SERVICE_BASE_URL = '/user/'
BIG_BLUE_BUTTON_URL = https://dev.mentoring.shikshalokam.org

# Big blue button base url
BIB_BLUE_BUTTON_BASE_URL = /bigbluebutton/
BIG_BLUE_BUTTON_BASE_URL = /bigbluebutton/

# Meeting end callback events end point
MEETING_END_CALLBACK_EVENTS = https%3A%2F%2Fdev.elevate-apis.shikshalokam.org%2Fmentoring%2Fv1%2Fsessions%2Fcompleted
Expand Down
4 changes: 2 additions & 2 deletions src/api-doc/elevate-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Please refer to the below documentation to install Docker and docker-compose on
BIG_BLUE_BUTTON_URL=https://dev.some.temp.org

# Big blue button base URL
BIB_BLUE_BUTTON_BASE_URL=/bigbluebutton/
BIG_BLUE_BUTTON_BASE_URL=/bigbluebutton/

# Meeting end callback events endpoint
MEETING_END_CALLBACK_EVENTS=https%3A%2F%2Fdev.some-apis.temp.org%2Fmentoring%2Fv1%2Fsessions%2Fcompleted
Expand Down Expand Up @@ -855,7 +855,7 @@ USER_SERVICE_BASE_URL='/user/'
BIG_BLUE_BUTTON_URL=https://dev.some.temp.org

# Big blue button base URL
BIB_BLUE_BUTTON_BASE_URL=/bigbluebutton/
BIG_BLUE_BUTTON_BASE_URL=/bigbluebutton/

# Meeting end callback events endpoint
MEETING_END_CALLBACK_EVENTS=https%3A%2F%2Fdev.some-apis.temp.org%2Fmentoring%2Fv1%2Fsessions%2Fcompleted
Expand Down
2 changes: 1 addition & 1 deletion src/api-doc/mentoring-2.5-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ USER_SERVICE_BASE_URL='/user/'
BIG_BLUE_BUTTON_URL=https://dev.some.temp.org

# Big blue button base URL
BIB_BLUE_BUTTON_BASE_URL=/bigbluebutton/
BIG_BLUE_BUTTON_BASE_URL=/bigbluebutton/
sumanvpacewisdom marked this conversation as resolved.
Show resolved Hide resolved

# Meeting end callback events endpoint
MEETING_END_CALLBACK_EVENTS=https%3A%2F%2Fdev.some-apis.temp.org%2Fmentoring%2Fv1%2Fsessions%2Fcompleted
Expand Down
2 changes: 1 addition & 1 deletion src/requests/bigBlueButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/

// Dependencies
const bigBlueButtonUrl = process.env.BIG_BLUE_BUTTON_URL + process.env.BIB_BLUE_BUTTON_BASE_URL
const bigBlueButtonUrl = process.env.BIG_BLUE_BUTTON_URL + process.env.BIG_BLUE_BUTTON_BASE_URL
const request = require('@generics/requests')
const endpoints = require('@constants/endpoints')
const utils = require('@generics/utils')
Expand Down
2 changes: 1 addition & 1 deletion src/services/bigBlueButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/

// Dependencies
const bigBlueButtonUrl = process.env.BIG_BLUE_BUTTON_URL + process.env.BIB_BLUE_BUTTON_BASE_URL
const bigBlueButtonUrl = process.env.BIG_BLUE_BUTTON_URL + process.env.BIG_BLUE_BUTTON_BASE_URL
const endpoints = require('@constants/endpoints')
const utils = require('@generics/utils')

Expand Down