Skip to content

Commit

Permalink
Fixing typo-ed file name (#34)
Browse files Browse the repository at this point in the history
* added basic profile getter

Signed-off-by: danbugs <[email protected]>

* search working on frontend together with backend

Signed-off-by: danbugs <[email protected]>

* remove proxy

Signed-off-by: danbugs <[email protected]>

* started right-side display

Signed-off-by: danbugs <[email protected]>

* updated UI, fixed bug

Signed-off-by: danbugs <[email protected]>

* added a footer

Signed-off-by: danbugs <[email protected]>

* website moving forward

Signed-off-by: danbugs <[email protected]>

* added char images

Signed-off-by: danbugs <[email protected]>

* unstyled list view for tournament sets

Signed-off-by: danbugs <[email protected]>

* added some tests and got it passing on Windows

Signed-off-by: danbugs <[email protected]>

* fix favicon

Signed-off-by: danbugs <[email protected]>

* don't version control dist

Signed-off-by: danbugs <[email protected]>

* fixing typo and adding comments

Signed-off-by: danbugs <[email protected]>

---------

Signed-off-by: danbugs <[email protected]>
  • Loading branch information
danbugs authored Dec 23, 2023
1 parent a168685 commit f0d6eaf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion backend/tests.http
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
### This test is intended to be run with the humao.rest-client extension in VSCode

@baseUrl = http://127.0.0.1:8000

### search_players
GET {{baseUrl}}/players/Dantotto


### view_player
GET {{baseUrl}}/player/1178271

Expand Down
2 changes: 1 addition & 1 deletion src/smithe/event.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use anyhow::Result;
use startgg::queries::{
event_getter::get_phase_id_from_event_slug, seeding_geeter::make_seeding_getter_query,
event_getter::get_phase_id_from_event_slug, seeding_getter::make_seeding_getter_query,
};
use url::Url;

Expand Down
2 changes: 1 addition & 1 deletion startgg_api/src/queries/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub mod event_getter;
pub mod player_getter;
pub mod seeding_geeter;
pub mod seeding_getter;
pub mod set_getter;
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ pub async fn make_seeding_getter_query(phase_id: i32) -> Result<Vec<Seed>> {
#[cfg(test)]
mod tests {
use crate::{
queries::seeding_geeter::{SeedingGetterData, SeedingGetterVars, SEEDING_GETTER_QUERY},
queries::seeding_getter::{SeedingGetterData, SeedingGetterVars, SEEDING_GETTER_QUERY},
StartGG,
};
use anyhow::Result;
Expand Down

0 comments on commit f0d6eaf

Please sign in to comment.