mirror of
				https://gitea.invidious.io/iv-org/shard-kemal.git
				synced 2024-08-15 00:53:36 +00:00 
			
		
		
		
	Use macro to generate DSL and support delete,patch verbs
This commit is contained in:
		
							parent
							
								
									f2e385801f
								
							
						
					
					
						commit
						fa00265345
					
				
					 3 changed files with 8 additions and 8 deletions
				
			
		|  | @ -37,7 +37,7 @@ dependencies: | ||||||
| 
 | 
 | ||||||
| ## Status | ## Status | ||||||
| 
 | 
 | ||||||
| Basic `get`, `put`, `post` and `head` routes can be matched, and request parameters can be obtained. | Basic `get`, `put`, `post`, `patch`, `delete` and `head` routes can be matched, and request parameters can be obtained. | ||||||
| 
 | 
 | ||||||
| ## Thanks | ## Thanks | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -1,7 +1,7 @@ | ||||||
| def get(path, &block : Kemal::Context -> _) | HTTP_METHODS = %w(get post put patch delete) | ||||||
|   Kemal::Handler::INSTANCE.add_route("GET", path, &block) |  | ||||||
| end |  | ||||||
| 
 | 
 | ||||||
| def post(path, &block : Kemal::Context -> _) | {% for method in HTTP_METHODS %} | ||||||
|   Kemal::Handler::INSTANCE.add_route("POST", path, &block) |   def {{method.id}}(path, &block : Kemal::Context -> _) | ||||||
| end |    Kemal::Handler::INSTANCE.add_route({{method}}.upcase, path, &block) | ||||||
|  |   end | ||||||
|  | {% end %} | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue