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

feat: method for Projects class to update JWT expiration #8

Closed
wants to merge 10 commits into from
Prev Previous commit
Next Next commit
linting
  • Loading branch information
BadgerBloke committed Sep 13, 2023
commit de25284b46e4138594d831756033db6c465ac071
6 changes: 3 additions & 3 deletions src/services/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import type { UploadProgress, Payload } from '../client';

export class Project extends Service {

constructor(client: Client)
{
constructor(client: Client)
{
super(client);
}
}

/**
* Get usage stats for a project
Expand Down