From 280c088982b0942f48d5627c4c59548d718e4fa0 Mon Sep 17 00:00:00 2001 From: harshadyeola Date: Tue, 2 Dec 2014 15:40:34 +0530 Subject: [PATCH] ee site subcommands --- ee/cli/controllers/site.py | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/ee/cli/controllers/site.py b/ee/cli/controllers/site.py index 3bc41b8c..9999a4dc 100644 --- a/ee/cli/controllers/site.py +++ b/ee/cli/controllers/site.py @@ -19,7 +19,42 @@ class EESiteController(CementBaseController): def default(self): # Default action for ee site command print("Inside EESiteController.default().") - EEDummy.dummy() + + def create(self): + # Write code for ee site create command here + print("Inside EESiteController.create().") + + def delete(self): + # Write code for ee site delete command here + print("Inside EESiteController.delete().") + + def enable(self): + # Write code for ee site enable command here + print("Inside EESiteController.enable().") + + def disable(self): + # Write code for ee site disable command here + print("Inside EESiteController.disable().") + + def info(self): + # Write code for ee site info command here + print("Inside EESiteController.info().") + + def log(self): + # Write code for ee site log command here + print("Inside EESiteController.log().") + + def edit(self): + # Write code for ee site edit command here + print("Inside EESiteController.edit().") + + def show(self): + # Write code for ee site edit command here + print("Inside EESiteController.show().") + + def list(self): + # Write code for ee site list command here + print("Inside EESiteController.list().") # site command Options and subcommand calls and definations to # mention here