Method: Clubhouse::Project#create_story

Defined in:
lib/clubhouse2/project.rb

#create_story(**args) ⇒ Object



19
20
21
22
23
24
# File 'lib/clubhouse2/project.rb', line 19

def create_story(**args)
	@stories = nil
	args[:project_id] = @id
	Story.validate(**args)
	@client.create_object(:story, args)
end