mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
14 lines
388 B
JavaScript
14 lines
388 B
JavaScript
import Component from '@glimmer/component';
|
|
import SignupFormEmbedModal from '../../components/modals/settings/signup-form-embed';
|
|
import {action} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default class SignupFormEmbed extends Component {
|
|
@service modals;
|
|
|
|
@action
|
|
open() {
|
|
this.modals.open(SignupFormEmbedModal, {}, {});
|
|
}
|
|
}
|