Rename humanstxt to humanshtml

stable
Andrey Antukh 2014-09-04 16:25:53 +02:00
parent 46e088d0fb
commit 7b9773df5f
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
# You should have received a copy of the GNU Affero General Public License # You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
# File: plugins/humanstxt/humanstxt.coffee # File: plugins/humanshtml/humanshtml.coffee
### ###
# Simple plugin example that extends the urlmappings # Simple plugin example that extends the urlmappings
@ -26,6 +26,6 @@ taiga = @.taiga
module = angular.module("taigaPlugins") module = angular.module("taigaPlugins")
configure = ($routeProvider) -> configure = ($routeProvider) ->
$routeProvider.when("/humans.txt", {"templateUrl": "/plugins/humanstxt/templates/humanstxt.html"}) $routeProvider.when("/humans.html", {"templateUrl": "/plugins/humanshtml/templates/humans.html"})
module.config(["$routeProvider", configure]) module.config(["$routeProvider", configure])