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 restored
  • Loading branch information
BadgerBloke committed Sep 13, 2023
commit d677cfb01c0ec4e5934a621de5e6637bc27616e2
4 changes: 2 additions & 2 deletions src/services/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import type { UploadProgress, Payload } from '../client';
export class Project extends Service {

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

/**
* Get usage stats for a project
Expand Down
4 changes: 2 additions & 2 deletions src/services/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import type { UploadProgress, Payload } from '../client';
export class Projects extends Service {

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

/**
* List Projects
Expand Down