Skip to content

Commit 6406c34

Browse files
authored
Merge pull request #2 from fabrix-app/v1.5
[feat] ltv 1.5
2 parents 9dfebd0 + 9bb30af commit 6406c34

File tree

3 files changed

+288
-1185
lines changed

3 files changed

+288
-1185
lines changed

lib/Email.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,13 @@ import { FabrixGeneric } from '@fabrix/fabrix/dist/common'
44
import * as stripTags from 'striptags'
55

66
export class Email extends FabrixGeneric {
7-
private _app: FabrixApp
87
public compose
98

109
constructor (app: FabrixApp) {
1110
if (!(app instanceof EventEmitter)) {
1211
throw new Error('The "app" argument must be of type EventEmitter')
1312
}
1413
super(app)
15-
this._app = app
1614

1715
Object.defineProperties(this, {
1816
/**
@@ -85,13 +83,6 @@ export class Email extends FabrixGeneric {
8583
}
8684
}
8785

88-
/**
89-
* Get the Fabrix App Instance that Template was constructed with
90-
*/
91-
get app(): FabrixApp {
92-
return this._app
93-
}
94-
9586
/**
9687
* Return the id of this email class
9788
*/

0 commit comments

Comments
 (0)