Closed JoyceBabu closed 3 years ago
Restler is currently generating a route for every public method in the class. Is it possible to limit it to some methods only?
I was able to do this by marking the class as private with @access private and the whitelisted methods with @access public.
@access private
@access public
You can also prefix the method name with _
_
Restler is currently generating a route for every public method in the class. Is it possible to limit it to some methods only?