You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the companies page, a user should be able to click on a company.
This will open a new page that displays general company information and available roles for the company.
We discussed considering how we could implement features similar to glassdoor or levels. As mentioned in #105 , you have access to all of the reviews and roles. The top part of the page can maybe include some aggregated average reviews for the company (total number of reviews, average overall rating, average supervisor rating, etc.)
Below this, we want to somehow list out all of the Roles in a specific company. These will then link to the specific Role page (don't worry about this for now, just include a link or button)
On the companies page, a user should be able to click on a company.
This will open a new page that displays general company information and available roles for the company.
We discussed considering how we could implement features similar to glassdoor or levels. As mentioned in #105 , you have access to all of the reviews and roles. The top part of the page can maybe include some aggregated average reviews for the company (total number of reviews, average overall rating, average supervisor rating, etc.)
Below this, we want to somehow list out all of the Roles in a specific company. These will then link to the specific Role page (don't worry about this for now, just include a link or button)
Companies Database Schema:
export const Company = pgTable("company", {
id: uuid("id").notNull().primaryKey().defaultRandom(),
name: varchar("name").notNull(),
description: text("description"),
industry: varchar("industry").notNull(),
location: varchar("location").notNull(),
createdAt: timestamp("createdAt").defaultNow().notNull(),
updatedAt: timestamp("updatedAt", {
mode: "date",
withTimezone: true,
}).$onUpdateFn(() => sql
now()
),});
Post Standup Feb 6th:
Rebecca has redesigned the Roles page (mostly) and we want to make sure future designs are in line with that design style
The text was updated successfully, but these errors were encountered: