-
Notifications
You must be signed in to change notification settings - Fork 12
Feat: meta baserow #2130
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: meta baserow #2130
Conversation
…d update SEO metadata usage
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok pour cette PR.
C'est un début propre pour le ticket sur les balises meta !
Si je comprend bien, c'était pour toi l'occasion de jeter un coup d'oeil sur le package data et tu as fais quelques corrections/améliorations. Merci pour ça :)
J'ai juste mis une question, sur le fichier AbstractBaserow.
RAS pour le reste, merci pour les améliorations ;)
protected async _getData<T>(tableId: number) { | ||
return await this._axios.get<BaserowData<T>>(`${this._baseUrl}/database/rows/table/${tableId}/?user_field_names=true`) | ||
} | ||
|
||
protected async _getDatum<T>(tableId: number, rowId: number) { | ||
return await this._axios.get<T>(`${this._baseUrl}/database/rows/table/${tableId}/${rowId}/?user_field_names=true`) | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment : je dois dire que je ne vois pas trop l'intéret de sortir ce code. Tu peux m'expliquer ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Juste pour simplifier la lecture
|
# Conflicts: # libs/data/src/common/baserow/abstractBaserow.ts
- Replaced static titles and descriptions with SEO-specific properties (`seoTitle`, `seoDescription`) across multiple pages. - Updated Baserow URL construction by removing redundant `_axiosHeader` and `axios` references, leveraging `_axios` instance instead. - Enhanced type safety by replacing `any` with `unknown` in method parameters.
No description provided.