docs: fix decorator for @AfterRecover() (#9504)

### `@AfterRecover`

You can define a method with any name in the entity and mark it with `@AfterRecover`
and TypeORM will call it after the entity is recovered using repository/manager `recover`.
Example:

```typescript
@Entity()
export class Post {
    @AfterRecover()
    updateStatus() {
        this.status = "recovered"
    }
}
```
`@AfterSoftRemove()` should be `@AfterRecover`
This commit is contained in:
Bikram Suwal 2022-11-04 16:58:51 +05:45 committed by GitHub
parent 66acec8c0c
commit b5ff79fc3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

Diff Content Not Available