feat(jobs): remove pages for results_wanted

This commit is contained in:
Cullen Watson
2023-07-10 22:07:19 -05:00
parent bf56410ecf
commit 3240214bb1
11 changed files with 449 additions and 271 deletions

View File

@@ -11,6 +11,7 @@ class JobType(Enum):
TEMPORARY = "temporary"
PER_DIEM = "per_diem"
NIGHTS = "nights"
OTHER = "other"
class Location(BaseModel):
@@ -61,9 +62,5 @@ class JobResponse(BaseModel):
success: bool
error: str = None
total_pages: int = None
job_count: int = None
page: int = None
jobs: list[JobPost] = []