Merged
Conversation
There was a problem hiding this comment.
Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.
Comments suppressed due to low confidence (1)
intbot/intbot/settings.py:288
- The PRETALX_API_TOKEN is declared globally and then overwritten for the dev environment, which might lead to confusion; consider consolidating the configuration to maintain a single source of truth.
PRETALX_API_TOKEN = "Test-Pretalx-API-token"
intbot/core/integrations/pretalx.py
Outdated
| url = base_url + f"{endpoint}" | ||
|
|
||
| # Pretalx paginates the output, so we will need to do multiple requests and | ||
| # then merge mutliple pages to one big dictionary |
There was a problem hiding this comment.
There is a minor spelling error: 'mutliple' should be corrected to 'multiple'.
Suggested change
| # then merge mutliple pages to one big dictionary | |
| # then merge multiple pages to one big dictionary |
clytaemnestra
approved these changes
Apr 23, 2025
Co-authored-by: Mia Bajić <38294198+clytaemnestra@users.noreply.github.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Basic background task to download pretalx submissions/speakers data.
This is first step to making the programme data available in intbot.
The next step after downloading the data, will be to parse it to separate tables so that we can write simple queries against them. (this is coming in future PRs)
TODO for this PR: