Vojta Staněk
Vojta Staněk
We have a monorepo when one of the packages is compiled with webpack, but references other package from the monorepo. We are using project references (new in TS 3) to...
I want to change what user can select based on context (sign-in, role) - as outlined in #45. So I want to specify where condition Here is how I would...
Should be useful when we have `DiscriminatedBlocks` and use different set of fields in each block and we want to unset fields or relations not used in the block and...
I have following schema: ```ts export class Article { // [...] publishedAt = def.dateTimeColumn() // [...] } ``` Admin definition: ```tsx ``` ## Current behaviour When editing entity which has...
If I use decorators and don't explicitly declare the `admin` role, `@acl.allowCustomPrimary()` has no effect. This PR allows custom primary for admin always since there is no security risk involved...
If we have following schema: ``` export class Foo { @validation.assertPattern(/^#[0-9a-fA-F]{6}$/, 'Invalid color.') color = d.stringColumn().notNull() } ``` We accept both `#0094FF` and `#0094ff` although they represent the same color....
Use case: Backwards compatibility when renaming fields, forwards compatibility when changing one field into two. Allow to specify a field in schema, that is only an alias for other field...
When truncate command is executed in content database, no events are inserted into event log.
Here is an example: ```ts @Unique('segment', 'parent') class Url { segment = def.stringColumn().notNull() parent = def.manyHasOne(Url) } ``` Let's say I would like to create following structure, but I don't...
I'm using unstable version of chrome and the page say that I'm not using chrome: Google Chrome required! Notifications are not supported for this Browser/OS version yet. This application needs...