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

Add app ip extractor #30

Merged
merged 6 commits into from
Oct 25, 2023
Merged

Add app ip extractor #30

merged 6 commits into from
Oct 25, 2023

Commits on Oct 6, 2023

  1. Add an extractor for app_id

    This is generally useful thing to be able to easily get out of a
    request and even thought it is possible to do currently (via the
    delivery) it is more cumbersome than it has to be. This PR makes it
    straight forward by having a simple wrapper that implements the
    `Extractor` trait.
    
        use kanin::extract::AppId;
        async fn my_handler(AppId(app_id): AppId) {
            dbg!(app_id);
        }
    gorm-issuu committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    bea3930 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    47edf4b View commit details
    Browse the repository at this point in the history
  3. Bump patch version

    gorm-issuu committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    cdee5eb View commit details
    Browse the repository at this point in the history
  4. Add test

    gorm-issuu committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    4ac47fc View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2023

  1. Configuration menu
    Copy the full SHA
    f69cb63 View commit details
    Browse the repository at this point in the history
  2. Bump minor version

    gorm-issuu committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    8f4221e View commit details
    Browse the repository at this point in the history