This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Pros and Cons of fat controller | |
| ### Pros | |
| + Fast dev time, no extra layer | |
| ### Cons | |
| + No reusable code for different interfaces (API, CLI and Controller) | |
| ## Pros and Cons of fat service class |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var issues = $$('.markdown-title'); | |
| var content = ""; | |
| for (i in issues) { | |
| content = content + "+ User: fix - " +issues[i].text + "\n"; | |
| } | |
| window.prompt ("Copy to clipboard: Ctrl+C, Enter", content); | |
OlderNewer