mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-18 19:40:55 +01:00
c878bf5033
Summary: Updates Macro to use EditEngine. Also removes "URL" field for adding a Macro, which I think it's worth pursuing. Test Plan: - Create a Macro - Forget to name it - Try a PDF - Use a Macro - Edit a macro (not working) Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D17821
10 lines
248 B
PHP
10 lines
248 B
PHP
<?php
|
|
|
|
final class PhabricatorMacroEditController extends PhameBlogController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
return id(new PhabricatorMacroEditEngine())
|
|
->setController($this)
|
|
->buildResponse();
|
|
}
|
|
}
|